From 34353afa23f23d9bc3470896248b8c387465a4b2 Mon Sep 17 00:00:00 2001 From: Alexey Kulakov Date: Mon, 10 Feb 2014 17:25:36 +0000 Subject: Miranda API sync with small compilation fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@8083 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- include/delphi/m_message.inc | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'include/delphi/m_message.inc') diff --git a/include/delphi/m_message.inc b/include/delphi/m_message.inc index 73577802d5..19ae286e38 100644 --- a/include/delphi/m_message.inc +++ b/include/delphi/m_message.inc @@ -57,16 +57,16 @@ type PMessageWindowEventData = ^TMessageWindowEventData; TMessageWindowEventData = record cbSize : int; - hContact : THANDLE; - hwndWindow: HWND; // top level window for the contact - szModule : PAnsiChar; // used to get plugin type (which means you could use - // local if needed) - uType : uint; // see event types above - uFlags : uint; // used to indicate message direction for all event - // types except custom - local : pointer; // used to store pointer to custom data - hwndInput : HWND; // input area window for the contact (or NULL if there is none) - hwndLog : HWND; // log area window for the contact (or NULL if there is none) + hContact : HCONTACT; + hwndWindow: HWND; // top level window for the contact + szModule : PAnsiChar; // used to get plugin type (which means you could use + // local if needed) + uType : uint; // see event types above + uFlags : uint; // used to indicate message direction for all event + // types except custom + local : pointer; // used to store pointer to custom data + hwndInput : HWND; // input area window for the contact (or NULL if there is none) + hwndLog : HWND; // log area window for the contact (or NULL if there is none) end; const @@ -87,7 +87,7 @@ type PMessageWindowInputData = ^TMessageWindowInputData; TMessageWindowInputData = record cbSize : int; - hContact: THANDLE; + hContact: HCONTACT; uFlags : int; // see uflags above end; @@ -102,7 +102,7 @@ type PMessageWindowOutputData = ^TMessageWindowOutputData; TMessageWindowOutputData = record cbSize : int; - hContact : THANDLE; + hContact : HCONTACT; uFlags : int; // should be same as input data unless 0, then it // will be the actual type hwndWindow: HWND; // top level window for the contact or NULL if no window exists @@ -131,7 +131,7 @@ type MessageWindowEvent = record cbSize :int; seq :int; // number returned by PSS_MESSAGE - hContact :THANDLE; + hContact :HCONTACT; dbei :PDBEVENTINFO; // database event written on the basis of message sent end; @@ -159,13 +159,13 @@ const type MessageWindowPopupData = record cbSize :int; - uType :uint; // see popup types above - uFlags :uint; // used to indicate in which window the popup was requested - hContact :THANDLE; - hwnd :HWND; // window where the popup was requested - hMenu :HMENU; // The handle to the menu - pt :TPOINT; // The point, in screen coords - selection:int; // The menu control id or 0 if no one was selected + uType :uint; // see popup types above + uFlags :uint; // used to indicate in which window the popup was requested + hContact :HCONTACT; + hwnd :HWND; // window where the popup was requested + hMenu :HMENU; // The handle to the menu + pt :TPOINT; // The point, in screen coords + selection:int; // The menu control id or 0 if no one was selected end; // status icons -- cgit v1.2.3