-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrecomp.h
More file actions
63 lines (50 loc) · 1.29 KB
/
Copy pathPrecomp.h
File metadata and controls
63 lines (50 loc) · 1.29 KB
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
/*++
Copyright (c) Ken Johnson (Skywing). All rights reserved.
Module Name:
Precomp.h
Abstract:
This module acts as the precompiled header that pulls in all common system,
SkywingUtils, and NWNConnLib definitions that are used by other modules.
--*/
#ifndef _PROGRAMS_LISTMODULEAREAS_PRECOMP_H
#define _PROGRAMS_LISTMODULEAREAS_PRECOMP_H
#ifdef _MSC_VER
#pragma once
#endif
#define _CRT_SECURE_NO_DEPRECATE
#define _CRT_SECURE_NO_DEPRECATE_GLOBALS
#define _STRSAFE_NO_DEPRECATE
#include <winsock2.h>
#include <windows.h>
#include <windowsx.h>
#undef GetFirstChild
#include <shlobj.h>
#include <process.h>
#include <stdlib.h>
#include <stdio.h>
#include <io.h>
#include <string>
#include <set>
#include <map>
#include <vector>
#include <list>
#include <algorithm>
#include <functional>
#include <queue>
#include <tchar.h>
#include <strsafe.h>
#include <hash_map>
#include <time.h>
#include <math.h>
#include <limits.h>
#include <float.h>
#ifdef ENCRYPT
#include <protect.h>
#endif
#include "../ProjectGlobal/ProjGlobalDefs.h"
#include "../SkywingUtils/SkywingUtils.h"
#include "../NWNBaseLib/NWNBaseLib.h"
#include "../NWN2MathLib/NWN2MathLib.h"
#include "../Granny2Lib/Granny2Lib.h"
#include "../NWN2DataLib/NWN2DataLib.h"
#endif