diff options
author | Alexey Kulakov <panda75@bk.ru> | 2015-01-28 06:34:50 +0000 |
---|---|---|
committer | Alexey Kulakov <panda75@bk.ru> | 2015-01-28 06:34:50 +0000 |
commit | 0bc017159442fed3020f64da88adbb3d9ab2a03b (patch) | |
tree | ba723bc439207b527fe4b2b9baa5e68dd6953ccf /plugins/ExternalAPI/delphi | |
parent | 86dfe0c06437f79fd6f5bdfe34659339ef9cf525 (diff) |
Pascal: miranda API updates
git-svn-id: http://svn.miranda-ng.org/main/trunk@11937 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ExternalAPI/delphi')
-rw-r--r-- | plugins/ExternalAPI/delphi/m_historypp.inc | 4 | ||||
-rw-r--r-- | plugins/ExternalAPI/delphi/m_ieview.inc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/ExternalAPI/delphi/m_historypp.inc b/plugins/ExternalAPI/delphi/m_historypp.inc index 9e0bbec4ea..042b44c692 100644 --- a/plugins/ExternalAPI/delphi/m_historypp.inc +++ b/plugins/ExternalAPI/delphi/m_historypp.inc @@ -93,7 +93,7 @@ type TItemRenderDetails = record
cbSize : DWord; // size of the structure in bytes
hContact : TMCONTACT; // handle to the contact for which the event is processed
- hDBEvent : THANDLE; // handle to the event which is processed
+ hDBEvent : TMEVENT; // handle to the event which is processed
dwEventTime : DWord; // timestamp of the event
wEventType : Word; // Event's flags (see m_database, EVENTTYPE_*; m_icq, ICQEVENTTYPE_*)
IsEventSent : ByteBool; // Outgoing event. True if DBEF_SENT event flag is present (see m_database)
@@ -150,7 +150,7 @@ const TOpenEventParams = record
cbSize : DWord;
hContact : TMCONTACT;
- hDBEvent : THANDLE;
+ hDBEvent : TMEVENT;
pPassword: PAnsiChar;
end;
diff --git a/plugins/ExternalAPI/delphi/m_ieview.inc b/plugins/ExternalAPI/delphi/m_ieview.inc index bcb41f8049..72de71299b 100644 --- a/plugins/ExternalAPI/delphi/m_ieview.inc +++ b/plugins/ExternalAPI/delphi/m_ieview.inc @@ -160,8 +160,8 @@ const type
tagIEVIEWEVENT = record
case byte of
- 0: (hDbEventFirst: THANDLE);
- 1: (eventData :PIEVIEWEVENTDATA);
+ 0: (hDbEventFirst:TMEVENT);
+ 1: (eventData :PIEVIEWEVENTDATA);
end;
PIEVIEWEVENT = ^TIEVIEWEVENT;
|