47 lines
669 B
C
47 lines
669 B
C
|
/*
|
||
|
* Mr. 4th Dimention - Allen Webster
|
||
|
*
|
||
|
* 31.03.2017
|
||
|
*
|
||
|
* OS & Compiler cracking for 4coder
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
// TOP
|
||
|
|
||
|
#if !defined(FRED_OS_COMP_CRACKING_H)
|
||
|
#define FRED_OS_COMP_CRACKING_H
|
||
|
|
||
|
#if defined(_MSC_VER)
|
||
|
|
||
|
# define IS_CL
|
||
|
|
||
|
# define snprintf _snprintf
|
||
|
|
||
|
# if defined(_WIN32)
|
||
|
# define IS_WINDOWS
|
||
|
# pragma comment(lib, "Kernel32.lib")
|
||
|
# else
|
||
|
# error This compiler/platform combo is not supported yet
|
||
|
# endif
|
||
|
|
||
|
#elif defined(__GNUC__) || defined(__GNUG__)
|
||
|
|
||
|
# define IS_GCC
|
||
|
|
||
|
# if defined(__gnu_linux__)
|
||
|
# define IS_LINUX
|
||
|
# else
|
||
|
# error This compiler/platform combo is not supported yet
|
||
|
# endif
|
||
|
|
||
|
#else
|
||
|
#error This compiler is not supported yet
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|
||
|
// BOTTOM
|
||
|
|