Go to the documentation of this file.
32 #define CSFML_VERSION_MAJOR 2
33 #define CSFML_VERSION_MINOR 1
39 #if defined(_WIN32) || defined(__WIN32__)
42 #define CSFML_SYSTEM_WINDOWS
44 #elif defined(linux) || defined(__linux)
47 #define CSFML_SYSTEM_LINUX
49 #elif defined(__APPLE__) || defined(MACOSX) || defined(macintosh) || defined(Macintosh)
52 #define CSFML_SYSTEM_MACOS
54 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
57 #define CSFML_SYSTEM_FREEBSD
62 #error This operating system is not supported by SFML library
70 #if defined(CSFML_SYSTEM_WINDOWS)
73 #define CSFML_API_EXPORT extern "C" __declspec(dllexport)
74 #define CSFML_API_IMPORT extern __declspec(dllimport)
79 #pragma warning(disable : 4251)
83 #else // Linux, FreeBSD, Mac OS X
89 #define CSFML_API_EXPORT extern "C" __attribute__ ((__visibility__ ("default")))
90 #define CSFML_API_IMPORT extern __attribute__ ((__visibility__ ("default")))
95 #define CSFML_API_EXPORT extern "C"
96 #define CSFML_API_IMPORT extern
132 #if defined(_MSC_VER)
133 typedef signed __int64
sfInt64;
141 #endif // SFML_CONFIG_H