forked from mia/Aegisub
ba6fded1cd
Originally committed to SVN as r4957.
24 lines
450 B
C++
24 lines
450 B
C++
#ifndef AGI_PRE
|
|
|
|
#ifdef _WIN32
|
|
|
|
// Define min and max macros to identity.
|
|
// This will prevent WinDef.h defining them to functions, which prevents
|
|
// using std::min and std::max.
|
|
#define min min
|
|
#define max max
|
|
|
|
// Windows specific settings
|
|
#include "config/config_windows.h"
|
|
|
|
#else
|
|
|
|
// Generated by configure.in
|
|
#include "../acconf.h"
|
|
|
|
// Unix specific settings and defines.
|
|
#include "config/config_unix.h"
|
|
|
|
#endif // __WINDOWS__
|
|
|
|
#endif // AGI_PRE
|