diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-10-08 18:43:29 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-10-08 18:43:29 +0000 |
commit | 864081102a5f252415f41950b3039a896b4ae9c5 (patch) | |
tree | c6b764651e9dd1f8f53b98eab05f16ba4a492a79 /plugins/Actman/i_vars.inc | |
parent | db5149b48346c417e18add5702a9dfe7f6e28dd0 (diff) |
Awkwars's plugins - welcome to our trunk
git-svn-id: http://svn.miranda-ng.org/main/trunk@1822 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Actman/i_vars.inc')
-rw-r--r-- | plugins/Actman/i_vars.inc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/Actman/i_vars.inc b/plugins/Actman/i_vars.inc new file mode 100644 index 0000000000..4ca6764191 --- /dev/null +++ b/plugins/Actman/i_vars.inc @@ -0,0 +1,31 @@ +{variables}
+type
+ pHKList = ^tHKList;
+ tHKList = array [0..1023] of tHKRecord;
+ pActList = ^tActList;
+ tActList = array [0..1023] of tHKAction;
+const
+ StructDelim = #7;
+const
+ HKListPage = 8;
+ ActListPage = 16;
+var
+ MaxGroups :cardinal=0; // current array size
+ MaxActions:cardinal=0; // current array size
+var
+ GroupList :pHKList =nil;
+ ActionList:pActList=nil;
+var
+ NoDescription:PWideChar;
+var
+ NewGroupList :pHKList = nil;
+ NewActionList:pActList = nil;
+ NewMaxGroups :cardinal;
+ NewMaxActions:cardinal;
+var
+ xmlfilename:array [0..511] of WideChar;
+var
+ fCLfilter:boolean = true;
+ fCLformat:pWideChar = nil;
+var
+ ApiCard:tmApiCard;
\ No newline at end of file |