summaryrefslogtreecommitdiff
path: root/plugins/Actman30/lowlevelc.pas
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Actman30/lowlevelc.pas')
-rw-r--r--plugins/Actman30/lowlevelc.pas6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/Actman30/lowlevelc.pas b/plugins/Actman30/lowlevelc.pas
index 5c4d6b7965..fe6d9bde31 100644
--- a/plugins/Actman30/lowlevelc.pas
+++ b/plugins/Actman30/lowlevelc.pas
@@ -6,13 +6,15 @@ uses
windows,
iac_global;
+// Macro flags
const
- ACF_ASSIGNED = $80000000; // action assigned
+ ACF_ASSIGNED = $80000000; // macro assigned
ACF_FIRSTRUN = $40000000; // FirstRun flag
- ACF_USEDNOW = $20000000; // action in use (reserved)
+ ACF_USEDNOW = $20000000; // macro in use (reserved)
ACF_VOLATILE = $10000000; // don't save in DB
ACF_TOSAVE = ACF_ASSIGNED or ACF_FIRSTRUN;
+
type
pActionList = ^tActionList;
tActionList = array [0..1023] of tBaseAction;