-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstdafx.h
More file actions
67 lines (58 loc) · 1.24 KB
/
stdafx.h
File metadata and controls
67 lines (58 loc) · 1.24 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
64
65
66
67
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include "targetver.h"
#include <stdint.h>
#include <cstdlib>
#include <lua/lua.hpp>
#include <lua/lauxlib.h>
#include <signal.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stdio.h>
#include <tchar.h>
#include <string.h>
#include <time.h>
#include <signal.h>
#include <thread>
#ifndef WIN32
#include <pthread.h>
#include <arpa/inet.h>
#include <dirent.h>
#include <dlfcn.h>
#include <glob.h>
#include <netdb.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <sys/epoll.h>
//#include <sys/mman.h>
#include <sys/param.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <unistd.h>
#include <inttypes.h>
#else
#include <intrin.h>
#endif
#include <assert.h>
#include <algorithm>
#include <cctype>
#include <errno.h>
#include <fcntl.h>
#include <fstream>
#include <iostream>
#include <list>
#include <map>
#include <queue>
#include <string>
#include <sstream>
#include <sys/stat.h>
#include <sys/timeb.h>
#include <vector>
#include <sys/types.h>
#include <memory.h>
#include <math.h>
#include <mutex>
// TODO: reference additional headers your program requires here