diff options
author | George Hazan <george.hazan@gmail.com> | 2014-03-22 10:20:05 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-03-22 10:20:05 +0000 |
commit | b8911512f8350007c79bad0bdaf77b6f3552b807 (patch) | |
tree | 7ae25f1e3571bfb052099d85852e8815f368af09 /include | |
parent | d5fbcc024448bfaa582fa97d37559275f5493597 (diff) |
boolean function finally declared as boolean
git-svn-id: http://svn.miranda-ng.org/main/trunk@8680 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/m_metacontacts.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/delphi/m_metacontacts.inc b/include/delphi/m_metacontacts.inc index 4ff361fa71..64a2fca992 100644 --- a/include/delphi/m_metacontacts.inc +++ b/include/delphi/m_metacontacts.inc @@ -119,11 +119,11 @@ procedure db_mc_enable(bEnabled:bool); stdcall; external CoreDLL name 'db_mc_enable';
{ returns true if a contact is a metacontact or false otherwise }
-function db_mc_isMeta(hContact:TMCONTACT):int; stdcall;
+function db_mc_isMeta(hContact:TMCONTACT):LongBool; stdcall;
external CoreDLL name 'db_mc_isMeta';
{ returns true if a contact is a subcontact or false otherwise }
-function db_mc_isSub(hContact:TMCONTACT):int; stdcall;
+function db_mc_isSub(hContact:TMCONTACT):LongBool; stdcall;
external CoreDLL name 'db_mc_isSub';
{ gets the handle for the default contact or 0 on error }
|