forked from mia/Aegisub
ead31761db
This eliminates some duplicated logic and potential tr1/non-tr1 header mismatches, and removes the need for the #if defined(AGI_PRE) || defined(LAGI_PRE) guard that was used in a few of the libaegisub headers. Originally committed to SVN as r5515.
65 lines
1.2 KiB
C++
65 lines
1.2 KiB
C++
#include "config.h"
|
|
|
|
#define LAGI_PRE
|
|
|
|
// Common C
|
|
#include <cassert>
|
|
#include <cerrno>
|
|
#include <climits>
|
|
#include <cmath>
|
|
#include <cstdarg>
|
|
#include <cstdio>
|
|
#include <cstring>
|
|
#include <stdint.h>
|
|
#include <sys/stat.h>
|
|
#ifdef HAVE_SYS_TIME_H
|
|
# include <sys/time.h>
|
|
#else
|
|
# include <ctime>
|
|
#endif
|
|
|
|
// Windows C
|
|
#ifdef _WIN32
|
|
// "Lean and mean" causes windows.h to include less stuff, mostly rarely-used things.
|
|
// We can't build without being "lean and mean", some of the things included by it has
|
|
// macros that clash with variable names around Aegisub causing strange build errors.
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#include <io.h>
|
|
#endif
|
|
|
|
// Unix C
|
|
#ifndef _WIN32
|
|
#include <sys/statvfs.h>
|
|
#include <sys/param.h>
|
|
#endif
|
|
|
|
// Common C++
|
|
#include <algorithm>
|
|
#include <deque>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <iterator>
|
|
#include <list>
|
|
#include <locale>
|
|
#include <map>
|
|
#include <numeric>
|
|
#include <sstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#ifdef _WIN32
|
|
#include <functional>
|
|
#include <memory>
|
|
#else
|
|
#include <tr1/functional>
|
|
#include <tr1/memory>
|
|
#endif
|
|
|
|
#ifdef __DEPRECATED // Dodge GCC warnings
|
|
# undef __DEPRECATED
|
|
# include <strstream>
|
|
# define __DEPRECATED
|
|
#else
|
|
# include <strstream>
|
|
#endif
|