forked from koro666/archeripper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StdAfx.h
41 lines (37 loc) · 806 Bytes
/
StdAfx.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
#pragma once
#include <windows.h>
#include <windowsx.h>
#include <commctrl.h>
#include <commoncontrols.h>
#include <objbase.h>
#include <shlobj.h>
#include <shobjidl.h>
#include <shlguid.h>
#include <shlwapi.h>
#include <uxtheme.h>
#include <d3d9.h>
#include <ddraw.h>
#include <d3dx9.h>
#include <wincodec.h>
#include <atlcomcli.h>
#include <tchar.h>
#include <string>
#include <functional>
#include <memory>
#include <vector>
#include <map>
#include <iterator>
using namespace std;
#ifdef _UNICODE
typedef std::wstring tstring;
#else
typedef std::string tstring;
#endif
extern "C" IMAGE_DOS_HEADER __ImageBase;
#define THIS_HINSTANCE reinterpret_cast<HINSTANCE>(&__ImageBase)
#include "Version.h"
#include "Startup.h"
#include "Deleter.h"
#include "Crest.h"
#include "ComObject.h"
#include "Window.h"