-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathStdAfx.h
63 lines (48 loc) · 1.14 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
63
#pragma once
#pragma warning(disable: 4503)
#define _SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#pragma warning( disable : 4503 ) //4503 can safely be ignored
#ifdef _DEBUG
#define CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#endif
#include <windows.h>
#include <commctrl.h>
#include <time.h>
#include "zlib/zlib.h"
#include "mysql/mysql.h"
//STL
#include <vector>
#include <list>
#include <map>
#include <hash_map>
#include <string>
#include <iterator>
#include <algorithm>
#include <stdint.h>
#include <stdio.h>
#include <set>
#include "resource.h"
#define stricmp _stricmp
#define strlwr _strlwr
class CPhysicsObj;
class CBasePlayer;
#include "Common.h"
#include "Util.h"
#include "Globals.h"
extern class CDatabase *g_pDB;
extern class CMYSQLDatabase *g_pDB2;
extern class CGameDatabase *g_pGameDatabase;
extern class CWorld *g_pWorld;
extern class CNetwork *g_pNetwork;
#include "DATDisk.h"
#include "TurbineData.h"
#include "TurbinePortal.h"
#include "TurbineCell.h"
#include "Rules.h"
extern TURBINEPORTAL* g_pPortal;
extern TURBINECELL* g_pCell;
extern GAMERULES* g_pGameRules;
extern bool g_bDebugToggle;