diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-09 09:02:16 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-09 09:02:16 +0000 |
commit | 6d10b27399e46e952ded3d5a8bc4645ccffb2c34 (patch) | |
tree | fc245f64fc5b4da747fa85d588cc10ce525504c2 /plugins/TopToolBar/common.h | |
parent | 4ce494e510feaaabc64ac4630645874ddd95203d (diff) |
- customizeable TopToolbar
- restored Clist Modern toolbar painter
git-svn-id: http://svn.miranda-ng.org/main/trunk@876 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TopToolBar/common.h')
-rw-r--r-- | plugins/TopToolBar/common.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/TopToolBar/common.h b/plugins/TopToolBar/common.h index 1e14548c0e..82060ac458 100644 --- a/plugins/TopToolBar/common.h +++ b/plugins/TopToolBar/common.h @@ -101,13 +101,15 @@ int ArrangeButtons(); #define SEPWIDTH 3
+extern TTBCtrl* g_ctrl;
+
extern LIST<TopButtonInt> Buttons;
-extern bool StopArrange;
-extern HWND hwndTopToolBar;
+extern bool bStopArrange;
extern HINSTANCE hInst;
extern HBITMAP hBmpBackground, hBmpSeparator;
-extern int BUTTWIDTH, BUTTHEIGHT, BUTTGAP;
extern CRITICAL_SECTION csButtonsHook;
+extern pfnCustomProc g_CustomProc;
+extern LPARAM g_CustomProcParam;
void AddToOptions(TopButtonInt* b);
void RemoveFromOptions(int id);
|