mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-14 08:31:23 +00:00
5fccdd9acd
- a bit of header cleanup. * moved <zlib.h> and <bzlib.h> from files.h to files_decompress.cpp because they are no longer needed for defining the interface. * added <functional> to the precompiled header
31 lines
No EOL
727 B
C++
31 lines
No EOL
727 B
C++
#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 <zlib.h>
|
|
#include <new>
|
|
#include <algorithm>
|
|
#include <forward_list>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <cassert>
|
|
#include <direct.h>
|
|
#include <io.h>
|
|
#include <limits>
|
|
#include <memory>
|
|
#include <tuple>
|
|
#include <vector>
|
|
#include <utility>
|
|
#include <functional>
|
|
|
|
// 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" |