diff options
author | Alexey Kulakov <panda75@bk.ru> | 2014-03-08 13:17:42 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2014-03-08 13:17:42 +0000 |
commit | 2529f4f40a2f7b44e07cc3562e1f1a654f16a39c (patch) | |
tree | a6dd4debffa330a4f47e583a6ea6c4f959715d2c /plugins/Actman/ua/i_inoutxm.inc | |
parent | d83baeb842ea828eaee90a0cd6575872a95240e8 (diff) |
type fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@8474 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Actman/ua/i_inoutxm.inc')
-rw-r--r-- | plugins/Actman/ua/i_inoutxm.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Actman/ua/i_inoutxm.inc b/plugins/Actman/ua/i_inoutxm.inc index 68ad22d694..098a262b1e 100644 --- a/plugins/Actman/ua/i_inoutxm.inc +++ b/plugins/Actman/ua/i_inoutxm.inc @@ -1,6 +1,6 @@ {}
var
- xmlparser:XML_API_W;
+ xmlparser:TXML_API_W;
const
ioAction :PWideChar = 'Action';
@@ -135,7 +135,7 @@ begin BlockRead(f,res^,i);
CloseHandle(f);
- 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
@@ -300,7 +300,7 @@ var ptr,ptr1:pChain;
begin
result:=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
|