diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-23 11:37:58 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-23 11:37:58 +0000 |
commit | 05ccb4dcd0b507fb000426667ed3f25c0b93db2b (patch) | |
tree | 653046dd7cf8fad5449706c1c97edf5e915c5881 /include/delphi | |
parent | 295ead17d6d2d2eb9c82cd12d8b119572f30fe3d (diff) |
db_set_resident - helper for MIDataBase::SetSettingResident
git-svn-id: http://svn.miranda-ng.org/main/trunk@5093 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi')
-rw-r--r-- | include/delphi/m_core.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/delphi/m_core.inc b/include/delphi/m_core.inc index c7f7dc6428..82acc44c5a 100644 --- a/include/delphi/m_core.inc +++ b/include/delphi/m_core.inc @@ -126,6 +126,8 @@ function db_event_prev(hDbEvent:THANDLE):THANDLE; stdcall; function db_free(dbv:PDBVARIANT):int_ptr; stdcall;
external CoreDLL name 'db_free';
+function db_set_resident(const szModule:pAnsiChar; const szSetting:pAnsiChar; bEnable:int):int; stdcall;
+ external CoreDLL name 'db_set_resident';
function db_unset(hContact:THANDLE; const szModule:pAnsiChar; const szSetting:pAnsiChar):int_ptr; stdcall;
external CoreDLL name 'db_unset';
|