diff options
author | George Hazan <ghazan@miranda.im> | 2022-07-30 15:08:07 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-07-30 15:08:07 +0300 |
commit | e743df09941ad6cf44c81b2bcfbc3396f0fc349c (patch) | |
tree | cf73fa49ad828f1e2f5ef6f62fdd79959948da0b /plugins/WhenWasIt/src/dlg_handlers.h | |
parent | 6462995d9bef854b9a04cc3e794fefcbf2fa2096 (diff) |
WWI:
- options moved to UI classes;
- global variables -> CMOption<>;
- code cleaning;
Diffstat (limited to 'plugins/WhenWasIt/src/dlg_handlers.h')
-rw-r--r-- | plugins/WhenWasIt/src/dlg_handlers.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/WhenWasIt/src/dlg_handlers.h b/plugins/WhenWasIt/src/dlg_handlers.h index 7a77e5e33a..8c8d41f08d 100644 --- a/plugins/WhenWasIt/src/dlg_handlers.h +++ b/plugins/WhenWasIt/src/dlg_handlers.h @@ -36,7 +36,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define WWIM_UPDATE_BIRTHDAY (WM_USER + 101)
#define WWIM_ADD_UPCOMING_BIRTHDAY (WM_USER + 102)
-INT_PTR CALLBACK DlgProcOptions(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
+int OnOptionsInitialise(WPARAM wParam, LPARAM);
+
INT_PTR CALLBACK DlgProcBirthdays(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
INT_PTR CALLBACK DlgProcAddBirthday(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
INT_PTR CALLBACK DlgProcUpcoming(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
|