-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathShared.h
44 lines (43 loc) · 1.1 KB
/
Shared.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
#pragma once
/*
<summary>
This is the common include file
</summary>
//*/
//#pragma warning(disable : 4244)
//#pragma warning(disable : 4227)
//#pragma warning(disable : 4172)
//#pragma warning(disable : 4307)
//#pragma warning(disable : 4996)
////#include <WinSock2.h>
////#include <Ws2tcpip.h>
//#include <windows.h>
//#include <IOSTREAM>
//#include <string>
//#include <Psapi.h>
//#include <lmcons.h>
//#include <algorithm>
//#include <vector>
//#include <shlobj.h>
//#include <time.h>
//#include <random>
//#include <sstream>
//#include <fstream>
//#include <shlwapi.h>
//#include <iomanip>
//#include <ctime>
//#include <array>
//#include <intrin.h>
//#include <iphlpapi.h>
//#include <process.h>
//#include <Memory>
#include <d3d9.h>
#include <d3dx9.h>// for sprites and such
/*Debug Libs*/
#pragma comment(lib, "d3d9.lib")
#pragma comment(lib, "d3dx9.lib")
//#pragma comment(lib,"ntdll.lib")//binding issues
#pragma comment(lib,"iphlpapi.lib")
//extern void Request(int Method, LPCSTR Host, LPCSTR url, LPCSTR header, const char* data);
#define POST 1
#define GET 0