OSDN Git Service

import the last version of the original mayu extracted by following command:
[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 BOOL CALLBACK dlgLog_dlgProc(
14   HWND i_hwnd, UINT i_message, WPARAM i_wParam, LPARAM i_lParam);
15
16 enum
17 {
18   ///
19   WM_APP_dlglogNotify = WM_APP + 115,
20 };
21
22 enum DlgLogNotify
23 {
24   DlgLogNotify_logCleared,                      ///
25 };
26
27 /// parameters for "Investigate" dialog box
28 class DlgLogData
29 {
30 public:
31   tomsgstream *m_log;                           /// log stream
32   HWND m_hwndTaskTray;                          /// tasktray window
33 };
34
35 #endif // !_DLGLOG_H