diff options
author | George Hazan <george.hazan@gmail.com> | 2014-03-19 18:42:19 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-03-19 18:42:19 +0000 |
commit | 3d3a8bb209b190732f8530f3dc5b2baa46d3078e (patch) | |
tree | 28afcae563cff29fdd686e1a4874bda0f6aee801 /include/m_clistint.h | |
parent | d67f238b33aa9fae3e877dc579ac9260323219fe (diff) |
fix against recursions in clists
git-svn-id: http://svn.miranda-ng.org/main/trunk@8664 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_clistint.h')
-rw-r--r-- | include/m_clistint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_clistint.h b/include/m_clistint.h index 307d7fd0f2..3f754715bd 100644 --- a/include/m_clistint.h +++ b/include/m_clistint.h @@ -422,7 +422,7 @@ typedef struct HANDLE hPreBuildStatusMenuEvent;
int currentStatusMenuItem, currentDesiredStatusMode;
- BOOL bDisplayLocked;
+ BOOL bDisplayLocked, bAutoRebuild;
HGENMENU (*pfnGetProtocolMenu)(const char*);
int (*pfnStub2)(int);
@@ -479,7 +479,7 @@ typedef struct int (*pfnGetContactIcon)(MCONTACT hContact);
int (*pfnTrayCalcChanged)(const char *szChangedProto, int averageMode, int iProtoCount);
int (*pfnGetAverageMode)(int *pNetProtoCount);
-
+ void (*pfnInitAutoRebuild)(HWND hwnd);
}
CLIST_INTERFACE;
|