diff options
Diffstat (limited to 'include/delphi/m_metacontacts.inc')
-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 }
|