OSDN Git Service

forgot to "git add" modified files, so re-commit:
[yamy/yamy.git] / dlglog.h
1 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 // dlglog.h
3
4
5 #ifndef _DLGLOG_H
6 #  define _DLGLOG_H
7
8 #  include <windows.h>
9 #  include "msgstream.h"
10
11
12 //
13 #ifdef MAYU64
14 INT_PTR CALLBACK dlgLog_dlgProc(
15 #else
16 BOOL CALLBACK dlgLog_dlgProc(
17 #endif
18   HWND i_hwnd, UINT i_message, WPARAM i_wParam, LPARAM i_lParam);
19
20 enum
21 {
22   ///
23   WM_APP_dlglogNotify = WM_APP + 115,
24 };
25
26 enum DlgLogNotify
27 {
28   DlgLogNotify_logCleared,                      ///
29 };
30
31 /// parameters for "Investigate" dialog box
32 class DlgLogData
33 {
34 public:
35   tomsgstream *m_log;                           /// log stream
36   HWND m_hwndTaskTray;                          /// tasktray window
37 };
38
39 #endif // !_DLGLOG_H