// --------------------------------------------------------------------------- // // @file TwPrecomp.h // @brief Precompiled header // @author Philippe Decaudin // @license This file is part of the AntTweakBar library. // For conditions of distribution and use, see License.txt // // note: Private header // // --------------------------------------------------------------------------- #if !defined ANT_TW_PRECOMP_INCLUDED #define ANT_TW_PRECOMP_INCLUDED #if defined _MSC_VER # pragma warning(disable: 4514) // unreferenced inline function has been removed # pragma warning(disable: 4710) // function not inlined # pragma warning(disable: 4786) // template name truncated # pragma warning(disable: 4530) // exceptions not handled # define _CRT_SECURE_NO_DEPRECATE // visual 8 secure crt warning #endif #include #include #include #include #include #include #include #if defined(_MSC_VER) && _MSC_VER<=1200 # pragma warning(push, 3) #endif #include #include #include #include #include #include #if defined(_MSC_VER) && _MSC_VER<=1200 # pragma warning(pop) #endif #if defined(_UNIX) # define ANT_UNIX # include # define GLX_GLXEXT_LEGACY # include # include # include # include # undef _WIN32 # undef WIN32 # undef _WIN64 # undef WIN64 # undef _WINDOWS # undef ANT_WINDOWS # undef ANT_OSX #elif defined(_MACOSX) # define ANT_OSX # include # include # include # include # undef _WIN32 # undef WIN32 # undef _WIN64 # undef WIN64 # undef _WINDOWS # undef ANT_WINDOWS # undef ANT_UNIX #elif defined(_WINDOWS) || defined(WIN32) || defined(WIN64) || defined(_WIN32) || defined(_WIN64) # define ANT_WINDOWS # ifndef WIN32_LEAN_AND_MEAN # define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers # endif # include # include #endif #if !defined(ANT_OGL_HEADER_INCLUDED) # if defined(ANT_OSX) # include # else # include // must be included after windows.h # endif # define ANT_OGL_HEADER_INCLUDED #endif #endif // !defined ANT_TW_PRECOMP_INCLUDED