diff options
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;
};
|