diff options
author | Alexey Kulakov <panda75@bk.ru> | 2014-12-08 21:15:12 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2014-12-08 21:15:12 +0000 |
commit | 03928a013fc148d5642942072bb573897e11c904 (patch) | |
tree | b23011a5811e3b2136561ea23ba4bf8d99a5074e /plugins/ExternalAPI | |
parent | ba731fa635a82b8caa9d64395fc16be506103485 (diff) |
old actman compatibility fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@11283 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ExternalAPI')
-rw-r--r-- | plugins/ExternalAPI/delphi/m_actman.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/ExternalAPI/delphi/m_actman.inc b/plugins/ExternalAPI/delphi/m_actman.inc index 630e82767b..768c70ea53 100644 --- a/plugins/ExternalAPI/delphi/m_actman.inc +++ b/plugins/ExternalAPI/delphi/m_actman.inc @@ -4,9 +4,15 @@ // defined in interfaces.inc
//const MIID_ACTMANAGER:MUUID='{9584DA04-FB4F-40c1-9325-E4F9CAAFCB5D}';
+// Old Actman compatibility
const
DBBranch = 'ActMan';
+const
+ ACCF_DISABLED = $10000000; // action disabled
+ ACCF_OVERLOAD = $01000000; // imported action overwrite old
+ ACCF_IMPORTED = $08000000;
+// new and common Actman data
const
AutoStartName:PWideChar = '#Autostart';
const
|