Formatting.

This commit is contained in:
Camilla Berglund 2015-01-08 06:56:17 +01:00
parent bb338a2b9c
commit 1591caa0e5

View File

@ -200,30 +200,25 @@ extern "C" {
#error "You must not have both GLFW_DLL and _GLFW_BUILD_DLL defined" #error "You must not have both GLFW_DLL and _GLFW_BUILD_DLL defined"
#endif #endif
/* GLFWAPI is used to declare public API functions for export
* from the DLL / shared library / dynamic library.
*/
#if defined(_WIN32) && defined(_GLFW_BUILD_DLL) #if defined(_WIN32) && defined(_GLFW_BUILD_DLL)
/* We are building GLFW as a Win32 DLL */ /* We are building GLFW as a Win32 DLL */
#define GLFWAPI __declspec(dllexport) #define GLFWAPI __declspec(dllexport)
#elif defined(_WIN32) && defined(GLFW_DLL) #elif defined(_WIN32) && defined(GLFW_DLL)
/* We are calling GLFW as a Win32 DLL */ /* We are calling GLFW as a Win32 DLL */
#if defined(__LCC__) #if defined(__LCC__)
#define GLFWAPI extern #define GLFWAPI extern
#else #else
#define GLFWAPI __declspec(dllimport) #define GLFWAPI __declspec(dllimport)
#endif #endif
#elif defined(__GNUC__) && defined(_GLFW_BUILD_DLL) #elif defined(__GNUC__) && defined(_GLFW_BUILD_DLL)
/* We are building GLFW as a shared / dynamic library */ /* We are building GLFW as a shared / dynamic library */
#define GLFWAPI __attribute__((visibility("default"))) #define GLFWAPI __attribute__((visibility("default")))
#else #else
/* We are building or calling GLFW as a static library */ /* We are building or calling GLFW as a static library */
#define GLFWAPI #define GLFWAPI
#endif #endif
/* -------------------- END SYSTEM/COMPILER SPECIFIC --------------------- */ /* -------------------- END SYSTEM/COMPILER SPECIFIC --------------------- */