-
Notifications
You must be signed in to change notification settings - Fork 15
/
StdAfx.h
62 lines (45 loc) · 1.16 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
//remove debug build warnings (debug names too long)
#ifdef _DEBUG
#pragma warning (disable : 4786)
#endif
#ifndef _UNICODE
#define UNICODE
#define _UNICODE
#endif
//remove SEH missing warning
#pragma warning (disable : 4530)
// Insert your headers here
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#define _AFX_NO_DEBUG_CRT // Dont use debug version of crt
#include <iostream>
using namespace std;
#include <fstream>
#include <sstream>
#include <string>
#include <map>
#include <vector>
#include <utility>
#include <algorithm>
#include <set>
#include <afx.h>
//#include <windows.h>
#include <Commdlg.h>
//#include <Winuser.h>
#include <shlwapi.h>
#include <shellapi.h>
#include "var.h"
#include "plugin201.h"
#include "HelperFunctions.h"
#include "IniReader.h"
#include "OllyLang.h"
#include "ODbgScript.h"
#include "Search.h"
#ifdef _DEBUG
#include "guicon.h"
#endif
#include "resource.h"