OSDN Git Service

separate intermediate directories for each projects to avoid confliction of dependenc...
[yamy/yamy.git] / dlginvestigate.h
1 //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2 // dlginvestigate.h
3
4
5 #ifndef _DLGINVESTIGATE_H
6 #  define _DLGINVESTIGATE_H
7
8 #  include <windows.h>
9
10
11 /// dialog procedure of "Investigate" dialog box
12 #ifdef MAYU64
13 INT_PTR CALLBACK dlgInvestigate_dlgProc(
14 #else
15 BOOL CALLBACK dlgInvestigate_dlgProc(
16 #endif
17   HWND i_hwnd, UINT i_message, WPARAM i_wParam, LPARAM i_lParam);
18
19 class Engine;
20
21 /// parameters for "Investigate" dialog box
22 class DlgInvestigateData
23 {
24 public:
25   Engine *m_engine;                             /// engine
26   HWND m_hwndLog;                               /// log
27 };
28
29
30 #endif // !_DLGINVESTIGATE_H