Camilla Berglund hace 9 años
padre
commit
03db3ed6e9
Se han modificado 3 ficheros con 7 adiciones y 7 borrados
  1. 4 4
      src/win32_init.c
  2. 1 1
      src/win32_platform.h
  3. 2 2
      src/win32_window.c

+ 4 - 4
src/win32_init.c

@@ -415,8 +415,8 @@ int _glfwPlatformInit(void)
     if (!_glfwRegisterWindowClassWin32())
         return GLFW_FALSE;
 
-    _glfw.win32.helperWindow = createHelperWindow();
-    if (!_glfw.win32.helperWindow)
+    _glfw.win32.helperWindowHandle = createHelperWindow();
+    if (!_glfw.win32.helperWindowHandle)
         return GLFW_FALSE;
 
     _glfwPlatformPollEvents();
@@ -433,8 +433,8 @@ int _glfwPlatformInit(void)
 
 void _glfwPlatformTerminate(void)
 {
-    if (_glfw.win32.helperWindow)
-        DestroyWindow(_glfw.win32.helperWindow);
+    if (_glfw.win32.helperWindowHandle)
+        DestroyWindow(_glfw.win32.helperWindowHandle);
 
     _glfwUnregisterWindowClassWin32();
 

+ 1 - 1
src/win32_platform.h

@@ -246,7 +246,7 @@ typedef struct _GLFWwindowWin32
 //
 typedef struct _GLFWlibraryWin32
 {
-    HWND                helperWindow;
+    HWND                helperWindowHandle;
     DWORD               foregroundLockTimeout;
     char*               clipboardString;
     char                keyName[64];

+ 2 - 2
src/win32_window.c

@@ -1605,7 +1605,7 @@ void _glfwPlatformSetClipboardString(_GLFWwindow* window, const char* string)
     memcpy(GlobalLock(stringHandle), wideString, wideSize);
     GlobalUnlock(stringHandle);
 
-    if (!OpenClipboard(_glfw.win32.helperWindow))
+    if (!OpenClipboard(_glfw.win32.helperWindowHandle))
     {
         GlobalFree(stringHandle);
         free(wideString);
@@ -1625,7 +1625,7 @@ const char* _glfwPlatformGetClipboardString(_GLFWwindow* window)
 {
     HANDLE stringHandle;
 
-    if (!OpenClipboard(_glfw.win32.helperWindow))
+    if (!OpenClipboard(_glfw.win32.helperWindowHandle))
     {
         _glfwInputError(GLFW_PLATFORM_ERROR, "Win32: Failed to open clipboard");
         return NULL;