2019-10-16 21:09:02 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <winsock2.h>
|
2019-09-22 21:15:46 +00:00
|
|
|
#include <windows.h> // Ugh... This needs to go away but since some of the headers pull it in the compilation is creepingly slow without this.
|
2019-10-16 21:09:02 +00:00
|
|
|
|
|
|
|
#ifdef min
|
|
|
|
#undef min
|
|
|
|
#undef max
|
|
|
|
#endif
|
|
|
|
|
2019-09-22 21:15:46 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <float.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <new>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <forward_list>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <cassert>
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <direct.h>
|
|
|
|
#include <io.h>
|
|
|
|
#endif // _MSC_VER
|
|
|
|
#include <limits>
|
|
|
|
#include <memory>
|
|
|
|
#include <tuple>
|
|
|
|
#include <vector>
|
|
|
|
#include <utility>
|
|
|
|
#include <functional>
|
2019-10-16 21:09:02 +00:00
|
|
|
#include <algorithm>
|
2019-09-22 21:15:46 +00:00
|
|
|
|
|
|
|
// These two headers get included nearly everywhere so it doesn't matter if changing them forces a few more recompiles.
|
|
|
|
// The overall savings from PCHing them are more significant.
|
|
|
|
//#include "tarray.h"
|
|
|
|
//#include "zstring.h"
|