diff options
author | George Hazan <ghazan@miranda.im> | 2018-01-22 22:26:18 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-22 22:26:25 +0300 |
commit | 23f676163a595018346050eccb5cc8b2571381e6 (patch) | |
tree | 09107aede495a3bebea5bed64a4483ffb3d148e5 /include | |
parent | 36b876e544afe74ce5f7463cdf9502d3b23f3ed6 (diff) |
code cleaning
Diffstat (limited to 'include')
-rw-r--r-- | include/m_db_int.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_db_int.h b/include/m_db_int.h index 1743eb42aa..5885e6f015 100644 --- a/include/m_db_int.h +++ b/include/m_db_int.h @@ -74,8 +74,8 @@ interface MIDatabaseCache : public MZeroedObject STDMETHOD_(DBCachedContact*, GetNextContact)(MCONTACT contactID) PURE;
STDMETHOD_(void, FreeCachedContact)(MCONTACT contactID) PURE;
- STDMETHOD_(char*, InsertCachedSetting)(const char *szName, int) PURE;
- STDMETHOD_(char*, GetCachedSetting)(const char *szModuleName, const char *szSettingName, int, int) PURE;
+ STDMETHOD_(char*, InsertCachedSetting)(const char *szName, size_t) PURE;
+ STDMETHOD_(char*, GetCachedSetting)(const char *szModuleName, const char *szSettingName, size_t, size_t) PURE;
STDMETHOD_(void, SetCachedVariant)(DBVARIANT *s, DBVARIANT *d) PURE;
STDMETHOD_(DBVARIANT*, GetCachedValuePtr)(MCONTACT contactID, char *szSetting, int bAllocate) PURE;
};
|