30 #define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowNull null 32 #define _GLFW_PLATFORM_CONTEXT_STATE 33 #define _GLFW_PLATFORM_MONITOR_STATE 34 #define _GLFW_PLATFORM_CURSOR_STATE 35 #define _GLFW_PLATFORM_LIBRARY_WINDOW_STATE 36 #define _GLFW_PLATFORM_LIBRARY_CONTEXT_STATE 37 #define _GLFW_EGL_CONTEXT_STATE 38 #define _GLFW_EGL_LIBRARY_CONTEXT_STATE 45 #if defined(_GLFW_WIN32) 46 #define _glfw_dlopen(name) LoadLibraryA(name) 47 #define _glfw_dlclose(handle) FreeLibrary((HMODULE) handle) 48 #define _glfw_dlsym(handle, name) GetProcAddress((HMODULE) handle, name) 50 #define _glfw_dlopen(name) dlopen(name, RTLD_LAZY | RTLD_LOCAL) 51 #define _glfw_dlclose(handle) dlclose(handle) 52 #define _glfw_dlsym(handle, name) dlsym(handle, name)