diff options
author | Alexey Kulakov <panda75@bk.ru> | 2014-03-08 13:20:51 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2014-03-08 13:20:51 +0000 |
commit | e0734e8e62dab60e70b8bbc69da909eecd3af9b5 (patch) | |
tree | 99cce8ca7d3c7436fb506cb341c282b6e63cfcb7 /plugins/Actman | |
parent | 2529f4f40a2f7b44e07cc3562e1f1a654f16a39c (diff) |
type fix 2
git-svn-id: http://svn.miranda-ng.org/main/trunk@8475 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Actman')
-rw-r--r-- | plugins/Actman/i_inoutxm.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Actman/i_inoutxm.inc b/plugins/Actman/i_inoutxm.inc index bbde13483a..65c9ba9936 100644 --- a/plugins/Actman/i_inoutxm.inc +++ b/plugins/Actman/i_inoutxm.inc @@ -1,6 +1,6 @@ {}
var
- xmlparser:XML_API_W;
+ xmlparser:TXML_API_W;
const
// Nodes
ioRoot :PWideChar = 'ActMan_Export';
@@ -575,7 +575,7 @@ begin CloseHandle(f);
//MessageBoxW(0,res,'SRC',0);
- xmlparser.cbSize:={XML_API_SIZEOF_V1;//}SizeOf(XML_API_W);
+ xmlparser.cbSize:={XML_API_SIZEOF_V1;//}SizeOf(TXML_API_W);
CallService(MS_SYSTEM_GET_XI,0,lparam(@xmlparser));
with xmlparser do
begin
@@ -1142,7 +1142,7 @@ var res:pWideChar;
act:integer;
begin
- xmlparser.cbSize:={XML_API_SIZEOF_V1;//}SizeOf(XML_API_W);
+ xmlparser.cbSize:={XML_API_SIZEOF_V1;//}SizeOf(TXML_API_W);
CallService(MS_SYSTEM_GET_XI,0,lparam(@xmlparser));
root:=0;
with xmlparser do
|