From 44b1f7bddb9e010bf92f3e9d9cc6118ef5cb9df3 Mon Sep 17 00:00:00 2001 From: mataes2007 Date: Mon, 25 Apr 2011 18:54:39 +0000 Subject: removed old versions git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@37 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb --- useactions/ExternalAPI/m_actman.inc | 115 ------------------------------------ 1 file changed, 115 deletions(-) delete mode 100644 useactions/ExternalAPI/m_actman.inc (limited to 'useactions/ExternalAPI/m_actman.inc') diff --git a/useactions/ExternalAPI/m_actman.inc b/useactions/ExternalAPI/m_actman.inc deleted file mode 100644 index 02a84a4..0000000 --- a/useactions/ExternalAPI/m_actman.inc +++ /dev/null @@ -1,115 +0,0 @@ -{$IFNDEF M_ACTMAN} -{$DEFINE M_ACTMAN} - -// defined in interfaces.inc -//const MIID_ACTMANAGER:MUUID='{9584DA04-FB4F-40c1-9325-E4F9CAAFCB5D}'; - -const - ACCF_DISABLED = $10000000; // action disabled - ACCF_EXPORT = $08000000; // action to export - ACCF_VOLATILE = $04000000; // don't save in DB - ACCF_IMPORTED = ACF_EXPORT; - ACCF_FLAGS = ACCF_DISABLED or ACCF_EXPORT or ACCF_IMPORTED or ACCF_VOLATILE; - ACCF_ID = $02000000; // for MS_ACT_SELECT, lParam is ID (else name) - ACCF_CLEAR = $01000000; // clear other flags, else - set -type - pChain = ^tChain; - TChain = record - descr:pWideChar; - id :dword; - flags:dword; // ACCF_* flags - end; - -const - { - wParam - 0 - lParam - address of destination list variable (address of pointer to tChain) - Return - count of elements - Notes: first 4 bytes = size of TChain structure (to add new fields in future) - } - MS_ACT_GETLIST:PAnsiChar = 'Actions/GetList'; - { - wParam - 0 - lParam - list address (pointer to data returned by MS_ACT_GETLIST) - } - MS_ACT_FREELIST:PAnsiChar = 'Actions/FreeList'; - { - wParam - id: dword - lParam - parameter - } - MS_ACT_RUNBYID :PAnsiChar = 'Actions/RunById'; - { - wParam - unicode action name - lParam - parameter - } - MS_ACT_RUNBYNAME:PAnsiChar = 'Actions/RunByName'; - -{ Starts action with 2 parameters - wParam: 0 - lParam: pointer to TAct_Param -} - MS_ACT_RUNPARAMS:PAnsiChar = 'Actions/RunWithParams'; -const - ACTP_BYNAME = 1; - ACTP_WAIT = 2; -type - PAct_Param = ^TAct_Param; - TAct_Param = record - flags :dword; // ACTP_* - ID :dword; // Id or name - wParam:WPARAM; - lParam:LPARAM; - end; - -const - ACTM_NEW = $00000001; - ACTM_DELETE = $00000002; - ACTM_RELOAD = $00000004; - ACTM_RENAME = $00000008; - ACTM_SORT = $00000010; - ACTM_ACT = $10000000; // do not check, internal - ACTM_ACTS = $20000000; // do not check, internal - ACTM_LOADED = $80000000; - - { - Event: action group list was changed: some was added or deleted - wParam - set of ACTM_* flags - lParam - 0 - } - ME_ACT_CHANGED:PAnsiChar = 'Actions/Changed'; - - ACIO_EXPORT = $00000001; // export, else - import - ACIO_APPEND = $00000002; // append file on export - ACIO_ASKEXIST = $00000004; // ask, if action exists on import - ACIO_SELECTED = $00000008; // export selected actions only - - { - wParam - ACIO_* flags - lParam - Unicode file name - Return - true, if totally succesful - } - MS_ACT_INOUT:PAnsiChar = 'Actions/ImpExp'; - - { - Event: Export actions - wParam - ACIO_* flags - lParam - unicode filename - } - ME_ACT_INOUT:PAnsiChar = 'Actions/InOut'; - - { - Select/unselect specified action - wParam - set of ACCF_* consts - lParam - unicode action name / number - Return - -1 if unsuccesful - } - MS_ACT_SELECT:PAnsiChar = 'Actions/Select'; - - { - Event: Action started/finished - wParam - Action status: 0 - started, 1 - finished - lParam - action id - } - ME_ACT_ACTION:PAnsiChar = 'Actions/Action'; - -{$ENDIF} -- cgit v1.2.3