summaryrefslogtreecommitdiff
path: root/include/delphi/m_database.inc
diff options
context:
space:
mode:
authorAlexey Kulakov <panda75@bk.ru>2015-01-28 06:34:50 +0000
committerAlexey Kulakov <panda75@bk.ru>2015-01-28 06:34:50 +0000
commit0bc017159442fed3020f64da88adbb3d9ab2a03b (patch)
treeba723bc439207b527fe4b2b9baa5e68dd6953ccf /include/delphi/m_database.inc
parent86dfe0c06437f79fd6f5bdfe34659339ef9cf525 (diff)
Pascal: miranda API updates
git-svn-id: http://svn.miranda-ng.org/main/trunk@11937 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi/m_database.inc')
-rw-r--r--include/delphi/m_database.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/delphi/m_database.inc b/include/delphi/m_database.inc
index 20d78fe556..0ca504eec1 100644
--- a/include/delphi/m_database.inc
+++ b/include/delphi/m_database.inc
@@ -326,13 +326,13 @@ const
{
wParam : TMCONTACT
- lParam : HDBEVENT
+ lParam : TMEVENT
Affect : Called when a new event has been added to the event chain
for a contact, TMCONTACT contains the contact who added the event,
- HDBEVENT a handle to what was added.
+ TMEVENT a handle to what was added.
see notes
notes : since events are sorted chronologically, you can not guarantee
- that HDBEVENT is in any particular position in the chain.
+ that TMEVENT is in any particular position in the chain.
}
ME_DB_EVENT_ADDED:PAnsiChar = 'DB/Event/Added';
@@ -355,14 +355,14 @@ const
{
wParam : TMCONTACT
- lParam : HDBEVENT
+ lParam : TMEVENT
Affect : Called when an event is marked read
}
ME_DB_EVENT_MARKED_READ:PAnsiChar = 'DB/Event/Marked/Read';
{
wParam : TMCONTACT
- lParam : HDBEVENT
+ lParam : TMEVENT
Affect : Called when an event is about to be deleted from the event chain
for a contact, see notes
notes : Returning non zero from your hook will NOT stop the deletion,