summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAlexey Kulakov <panda75@bk.ru>2014-03-08 13:17:42 +0000
committerAlexey Kulakov <panda75@bk.ru>2014-03-08 13:17:42 +0000
commit2529f4f40a2f7b44e07cc3562e1f1a654f16a39c (patch)
treea6dd4debffa330a4f47e583a6ea6c4f959715d2c /plugins
parentd83baeb842ea828eaee90a0cd6575872a95240e8 (diff)
type fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@8474 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Actman/ua/i_inoutxm.inc6
-rw-r--r--plugins/Actman/ua/i_uaplaces.inc8
-rw-r--r--plugins/ImportTXT/BICQ5IP.inc6
3 files changed, 10 insertions, 10 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
diff --git a/plugins/Actman/ua/i_uaplaces.inc b/plugins/Actman/ua/i_uaplaces.inc
index 806cbe302c..df4d160fe6 100644
--- a/plugins/Actman/ua/i_uaplaces.inc
+++ b/plugins/Actman/ua/i_uaplaces.inc
@@ -49,7 +49,7 @@ end;
procedure SetTABState(hContact:THANDLE;var ActionItem:tMyActionItem;pressed:integer);
var
- tabb:BBButton;
+ tabb:TBBButton;
pc:pWideChar;
begin
FillChar(tabb,SizeOf(tabb),0);
@@ -702,7 +702,7 @@ const
procedure AddTabBBButton(var ActionItem:tMyActionItem);
var
- tabb:BBButton;
+ tabb:TBBButton;
begin
if not NamesArray[uaTAB].enable then exit;
@@ -735,7 +735,7 @@ end;
procedure DeleteTabBBButton(var ActionItem:tMyActionItem);
var
- tabb:BBButton;
+ tabb:TBBButton;
begin
if (ActionItem.flags and UAF_TBREGGED)<>0 then
begin
@@ -751,7 +751,7 @@ end;
function OnTabButtonPressed(wParam:WPARAM;lParam:LPARAM):int; cdecl;
var
cbcd:pCustomButtonClickData;
-// tabb:BBButton;
+// tabb:TBBButton;
// pc:pWideChar;
i:integer;
begin
diff --git a/plugins/ImportTXT/BICQ5IP.inc b/plugins/ImportTXT/BICQ5IP.inc
index fe4420daec..9f9a2e3f3c 100644
--- a/plugins/ImportTXT/BICQ5IP.inc
+++ b/plugins/ImportTXT/BICQ5IP.inc
@@ -1,7 +1,7 @@
{$IFDEF BIN_IMPORT_}
var
- XI: XML_API_W;
+ XI: TXML_API_W;
rhxml: HXML;
curxml: HXML;
chldxml: HXML;
@@ -15,11 +15,11 @@ var
begin
If ServiceExists(MS_SYSTEM_GET_XI) > 0 then
begin
- XI.cbSize := SizeOf(XML_API_W);
+ XI.cbSize := SizeOf(TXML_API_W);
res := LongBool(CallService(MS_SYSTEM_GET_XI, 0, int(@XI)));
if not res then
begin
- XI.cbSize := SizeOf(XML_API_W) - 4;
+ XI.cbSize := SizeOf(TXML_API_W) - 4;
res := LongBool(CallService(MS_SYSTEM_GET_XI, 0, int(@XI)));
if not res then
begin