diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-30 20:46:01 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-30 20:46:01 +0000 |
commit | 06a79b9469f4d187132cd148411d9b92c7e35e6f (patch) | |
tree | bb9ee9b9daf2016ecc97d9af8b575cd32b8574da /include/m_clistint.h | |
parent | 0edc13560169b35dc38e2923f0d240531221cd03 (diff) |
fix for that hell with ClcCacheEntryBase
git-svn-id: http://svn.miranda-ng.org/main/trunk@2120 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_clistint.h')
-rw-r--r-- | include/m_clistint.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/m_clistint.h b/include/m_clistint.h index 4508abc41b..af87b3f114 100644 --- a/include/m_clistint.h +++ b/include/m_clistint.h @@ -161,6 +161,7 @@ struct ClcDataBase struct ClcContact;
struct ClcData;
struct CListEvent;
+struct ClcCacheEntry;
struct trayIconInfo_t
{
@@ -346,10 +347,10 @@ typedef struct TCHAR* (*pfnGetStatusModeDescription)(int mode, int flags);
/* clistsettings.c */
- ClcCacheEntryBase* (*pfnGetCacheEntry)(HANDLE hContact);
- ClcCacheEntryBase* (*pfnCreateCacheItem)(HANDLE hContact);
- void (*pfnCheckCacheItem)(ClcCacheEntryBase*);
- void (*pfnFreeCacheItem)(ClcCacheEntryBase*);
+ ClcCacheEntry* (*pfnGetCacheEntry)(HANDLE hContact);
+ ClcCacheEntry* (*pfnCreateCacheItem)(HANDLE hContact);
+ void (*pfnCheckCacheItem)(ClcCacheEntry*);
+ void (*pfnFreeCacheItem)(ClcCacheEntry*);
TCHAR* (*pfnGetContactDisplayName)(HANDLE hContact, int mode);
void (*pfnInvalidateDisplayNameCacheEntry)(HANDLE hContact);
|