-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.h
43 lines (29 loc) · 815 Bytes
/
main.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef MAIN_H_INCLUDED
#define MAIN_H_INCLUDED
#if defined(UNICODE) && !defined(_UNICODE)
#define _UNICODE
#elif defined(_UNICODE) && !defined(UNICODE)
#define UNICODE
#endif
#include <sstream>
#include <windows.h>
#include "WinClass.h"
#include "WinSimpleClass.h"
#include "WinMaker.h"
#include "ResString.h"
#include "resource.h"
#if (_WIN32_IE <= 0x0300)
#define TBSTYLE_FLAT 2048
#define TBSTYLE_LIST 4096
#define TBSTYLE_CUSTOMERASE 8192
#endif
#if defined __MINGW_H
#define _WIN32_IE 0x400
#endif
#include <commctrl.h>
#include <fstream>
BOOL CALLBACK AboutDlgProc(HWND, UINT, WPARAM, LPARAM);
LRESULT CALLBACK MainWndProc(HWND, UINT, WPARAM, LPARAM);
LRESULT CALLBACK MDIChildWndProc(HWND, UINT, WPARAM, LPARAM);
BOOL CALLBACK ChildWndEnumProc(HWND, LPARAM);
#endif // MAIN_H_INCLUDED