summaryrefslogtreecommitdiff
path: root/include/delphi
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-01-30 15:59:55 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-01-30 15:59:55 +0300
commit8969c6d6ba6a0641768baa3a1e2bdfa51c59249b (patch)
treeb265f9819c5a1f9b628d4424005af2dc17456326 /include/delphi
parentcb4b5a8aa228116f03d76ace440115516cfb0ed5 (diff)
fixes #1785 (sub's events aren't marked as read, because of that SRMM could read all events into a message log)
Diffstat (limited to 'include/delphi')
-rw-r--r--include/delphi/m_database.inc13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/delphi/m_database.inc b/include/delphi/m_database.inc
index df8161a615..1dd6902549 100644
--- a/include/delphi/m_database.inc
+++ b/include/delphi/m_database.inc
@@ -91,19 +91,6 @@ Events in a chain are sorted chronologically automatically
function db_event_first(hContact:TMCONTACT):TMEVENT; stdcall; external CoreDLL;
{
-Retrieves a handle to the first unread event in the chain for hContact
-Returns the handle, or NULL if hContact is invalid or all its events have been
-read
-
-Events in a chain are sorted chronologically automatically, but this does not
-necessarily mean that all events after the first unread are unread too. They
-should be checked individually with db_event_next() and db_event_get()
-This service is designed for startup, reloading all the events that remained
-unread from last time
-}
-function db_event_firstUnread(hContact:TMCONTACT):TMEVENT; stdcall; external CoreDLL;
-
-{
Retrieves all the information stored in hDbEvent
hDbEvent should have been returned by db_event_add/first/last/next/prev()
Returns 0 on success or nonzero if hDbEvent is invalid