From 156f0f7a236221c615e7b9e32741935bbe5e6644 Mon Sep 17 00:00:00 2001 From: Alexey Kulakov Date: Wed, 12 Mar 2014 18:07:10 +0000 Subject: Miranda API fix small actman optimization git-svn-id: http://svn.miranda-ng.org/main/trunk@8585 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- include/delphi/m_core.inc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'include/delphi') diff --git a/include/delphi/m_core.inc b/include/delphi/m_core.inc index be65468933..dc999a0d7c 100644 --- a/include/delphi/m_core.inc +++ b/include/delphi/m_core.inc @@ -133,6 +133,7 @@ function db_event_add(hContact:TMCONTACT; dbei:PDBEVENTINFO):THANDLE; stdcall; Gets the number of events in the chain belonging to a contact in the database. Returns the number of events in the chain owned by hContact or -1 if hContact is invalid. They can be retrieved using the db_event_first/last() services. +Returns 0 for Subcontacts (use db_event_last to recognize empty history) } function db_event_count(hContact:TMCONTACT):int; stdcall; external CoreDLL name 'db_event_count'; @@ -579,10 +580,12 @@ procedure List_ObjCopy(src:PSortedList; dst:PSortedList; size:size_t); stdcall; function mir_createLog(pszName:PAnsiChar; ptszDescr, ptszFile:PWideChar; options:Cardinal):THANDLE; stdcall; external CoreDLL name 'mir_createLog'; +procedure mir_closeLog(hLogger:THANDLE); stdcall; + external CoreDLL name 'mir_closeLog'; -function mir_writeLogA(hLog:THANDLE; format:PAnsiChar):int; cdecl; +function mir_writeLogA(hLogger:THANDLE; format:PAnsiChar):int; cdecl; external CoreDLL name 'mir_writeLogA'; -function mir_writeLogW(hLog:THANDLE; format:PWideChar):int; cdecl; +function mir_writeLogW(hLogger:THANDLE; format:PWideChar):int; cdecl; external CoreDLL name 'mir_writeLogW'; /////////////////////////////////////////////////////////////////////////////// -- cgit v1.2.3