diff options
author | George Hazan <ghazan@miranda.im> | 2021-11-07 19:24:53 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-11-07 19:24:53 +0300 |
commit | 2d3b4b958926b3ed7d4a5d997121fe91a12f83cc (patch) | |
tree | 1c40efd80b1fefc6dc2c80ad258f136754a02b7d /plugins/Dbx_sqlite/src | |
parent | 3d88a792fb2f3950989d95d91e7de57fa1b74923 (diff) |
update for system includes & import libraries
Diffstat (limited to 'plugins/Dbx_sqlite/src')
-rwxr-xr-x | plugins/Dbx_sqlite/src/dbcontacts.cpp | 6 | ||||
-rwxr-xr-x | plugins/Dbx_sqlite/src/dbevents.cpp | 4 | ||||
-rwxr-xr-x | plugins/Dbx_sqlite/src/dbintf.h | 10 |
3 files changed, 10 insertions, 10 deletions
diff --git a/plugins/Dbx_sqlite/src/dbcontacts.cpp b/plugins/Dbx_sqlite/src/dbcontacts.cpp index bd012ee4c8..8ea6d122ae 100755 --- a/plugins/Dbx_sqlite/src/dbcontacts.cpp +++ b/plugins/Dbx_sqlite/src/dbcontacts.cpp @@ -14,7 +14,7 @@ void CDbxSQLite::InitContacts() sqlite3_finalize(stmt); } -LONG CDbxSQLite::GetContactCount() +int CDbxSQLite::GetContactCount() { mir_cslock lock(m_csDbAccess); sqlite3_stmt *stmt = InitQuery("SELECT COUNT(1) FROM contacts LIMIT 1;", qCntCount); @@ -48,7 +48,7 @@ MCONTACT CDbxSQLite::AddContact() return hContact; } -LONG CDbxSQLite::DeleteContact(MCONTACT hContact) +int CDbxSQLite::DeleteContact(MCONTACT hContact) { // global contact cannot be removed if (hContact == 0) @@ -107,7 +107,7 @@ BOOL CDbxSQLite::IsDbContact(MCONTACT hContact) return (cc != nullptr); } -LONG CDbxSQLite::GetContactSize(void) +int CDbxSQLite::GetContactSize(void) { return sizeof(DBCachedContact); } diff --git a/plugins/Dbx_sqlite/src/dbevents.cpp b/plugins/Dbx_sqlite/src/dbevents.cpp index 94249e508f..a4a56eed84 100755 --- a/plugins/Dbx_sqlite/src/dbevents.cpp +++ b/plugins/Dbx_sqlite/src/dbevents.cpp @@ -30,7 +30,7 @@ void CDbxSQLite::UninitEvents() m_modules.destroy(); } -LONG CDbxSQLite::GetEventCount(MCONTACT hContact) +int CDbxSQLite::GetEventCount(MCONTACT hContact) { DBCachedContact *cc = (hContact) ? m_cache->GetCachedContact(hContact) : &m_system; if (cc == nullptr) @@ -257,7 +257,7 @@ BOOL CDbxSQLite::EditEvent(MCONTACT hContact, MEVENT hDbEvent, const DBEVENTINFO return 0; } -LONG CDbxSQLite::GetBlobSize(MEVENT hDbEvent) +int CDbxSQLite::GetBlobSize(MEVENT hDbEvent) { if (hDbEvent == 0) return -1; diff --git a/plugins/Dbx_sqlite/src/dbintf.h b/plugins/Dbx_sqlite/src/dbintf.h index c9425d8c67..e0f74a165e 100755 --- a/plugins/Dbx_sqlite/src/dbintf.h +++ b/plugins/Dbx_sqlite/src/dbintf.h @@ -118,17 +118,17 @@ public: STDMETHODIMP_(BOOL) IsRelational(void) override; STDMETHODIMP_(void) SetCacheSafetyMode(BOOL) override; - STDMETHODIMP_(LONG) GetContactCount(void) override; - STDMETHODIMP_(LONG) DeleteContact(MCONTACT contactID) override; + STDMETHODIMP_(int) GetContactCount(void) override; + STDMETHODIMP_(int) DeleteContact(MCONTACT contactID) override; STDMETHODIMP_(MCONTACT) AddContact(void) override; STDMETHODIMP_(BOOL) IsDbContact(MCONTACT contactID) override; - STDMETHODIMP_(LONG) GetContactSize(void) override; + STDMETHODIMP_(int) GetContactSize(void) override; - STDMETHODIMP_(LONG) GetEventCount(MCONTACT contactID) override; + STDMETHODIMP_(int) GetEventCount(MCONTACT contactID) override; STDMETHODIMP_(MEVENT) AddEvent(MCONTACT contactID, const DBEVENTINFO *dbe) override; STDMETHODIMP_(BOOL) DeleteEvent(MEVENT hDbEvent) override; STDMETHODIMP_(BOOL) EditEvent(MCONTACT contactID, MEVENT hDbEvent, const DBEVENTINFO *dbe) override; - STDMETHODIMP_(LONG) GetBlobSize(MEVENT hDbEvent) override; + STDMETHODIMP_(int) GetBlobSize(MEVENT hDbEvent) override; STDMETHODIMP_(BOOL) GetEvent(MEVENT hDbEvent, DBEVENTINFO *dbe) override; STDMETHODIMP_(BOOL) MarkEventRead(MCONTACT contactID, MEVENT hDbEvent) override; STDMETHODIMP_(MCONTACT) GetEventContact(MEVENT hDbEvent) override; |