summaryrefslogtreecommitdiff
path: root/include/m_core.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-10-10 07:00:35 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-10-10 07:00:35 +0000
commit2df45c323dff08d54e21f9a99610cb69d2d01075 (patch)
tree0acebd86b976b78c660c550cc71f76e5dcf0a57e /include/m_core.h
parent8d831f9b21feb4b203a8209f7ab70d5c533209a3 (diff)
two new db stubs: db_find_first & db_find_next
git-svn-id: http://svn.miranda-ng.org/main/trunk@1855 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_core.h')
-rw-r--r--include/m_core.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/m_core.h b/include/m_core.h
index e617b0ca98..0deec3269b 100644
--- a/include/m_core.h
+++ b/include/m_core.h
@@ -87,6 +87,9 @@ typedef struct {
MIR_CORE_DLL(INT_PTR) db_free(DBVARIANT *dbv);
MIR_CORE_DLL(INT_PTR) db_unset(HANDLE hContact, const char *szModule, const char *szSetting);
+MIR_CORE_DLL(HANDLE) db_find_first(const char *szProto = NULL);
+MIR_CORE_DLL(HANDLE) db_find_next(HANDLE hContact, const char *szProto = NULL);
+
MIR_CORE_DLL(int) db_get_b(HANDLE hContact, const char *szModule, const char *szSetting, int errorValue);
MIR_CORE_DLL(int) db_get_w(HANDLE hContact, const char *szModule, const char *szSetting, int errorValue);
MIR_CORE_DLL(DWORD) db_get_dw(HANDLE hContact, const char *szModule, const char *szSetting, DWORD errorValue);