diff options
author | George Hazan <george.hazan@gmail.com> | 2013-03-10 11:51:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-03-10 11:51:00 +0000 |
commit | 03758f8f918f392386a1dd7a1c7a795927f8c221 (patch) | |
tree | dc4dede8653397df0275f49e730b0d44605d7a7c /plugins/TopToolBar/src/common.h | |
parent | 1416051048756ab769de52ab5eb67a31e41524fd (diff) |
- ME_TTB_INITBUTTONS event considered useless;
- clist_modern & clist_nicer are trained to reload TTB buttons when TopToolBar plugin is loaded dynamically;
- TTB processing code slightly reordered
git-svn-id: http://svn.miranda-ng.org/main/trunk@3953 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TopToolBar/src/common.h')
-rw-r--r-- | plugins/TopToolBar/src/common.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/TopToolBar/src/common.h b/plugins/TopToolBar/src/common.h index 0840111f2f..64e15fcad4 100644 --- a/plugins/TopToolBar/src/common.h +++ b/plugins/TopToolBar/src/common.h @@ -116,7 +116,7 @@ extern HBITMAP hBmpBackground, hBmpSeparator; extern CRITICAL_SECTION csButtonsHook;
extern pfnCustomProc g_CustomProc;
extern LPARAM g_CustomProcParam;
-extern HANDLE hTTBModuleLoaded, hTTBInitButtons;
+extern HANDLE hTTBModuleLoaded;
void AddToOptions(TopButtonInt* b);
void RemoveFromOptions(int id);
@@ -138,14 +138,14 @@ TopButtonInt* idtopos(int id, int* pPos=NULL); INT_PTR TTBAddButton(WPARAM, LPARAM);
INT_PTR TTBRemoveButton(WPARAM, LPARAM);
-int InitInternalButtons(WPARAM, LPARAM);
+void InitInternalButtons(void);
-int LoadToolbarModule( void );
-int UnloadToolbarModule( void );
+int LoadToolbarModule(void);
+int UnloadToolbarModule(void);
-void SetAllBitmaps( void );
-int SaveAllLButs( void );
-int SaveAllButtonsOptions( void );
+void SetAllBitmaps(void);
+int SaveAllLButs(void);
+int SaveAllButtonsOptions(void);
void InsertSeparator( int i );
void DeleteSeparator(int i);
|