Browse Source

WinRT: renamed SDL_SYSWM_WINDOWSRT to SDL_SYSWM_WINRT
This is part of an overall effort to use the name, "WinRT", rather than "WindowsRT" (or "Windows RT"), as the shorthand name often seems to mean something different than the longhand name. (WinRT is an API, Windows RT is a product name)

David Ludwig 12 years ago
parent
commit
7be2ad71c9

+ 1 - 1
include/SDL_syswm.h

@@ -105,7 +105,7 @@ typedef enum
 {
 {
     SDL_SYSWM_UNKNOWN,
     SDL_SYSWM_UNKNOWN,
     SDL_SYSWM_WINDOWS,
     SDL_SYSWM_WINDOWS,
-    SDL_SYSWM_WINDOWSRT,
+    SDL_SYSWM_WINRT,
     SDL_SYSWM_X11,
     SDL_SYSWM_X11,
     SDL_SYSWM_DIRECTFB,
     SDL_SYSWM_DIRECTFB,
     SDL_SYSWM_COCOA,
     SDL_SYSWM_COCOA,

+ 1 - 1
src/render/direct3d11/SDL_render_d3d11.cpp

@@ -583,7 +583,7 @@ D3D11_GetCoreWindowFromSDLRenderer(SDL_Renderer * renderer)
         return nullptr;
         return nullptr;
     }
     }
 
 
-    if (sdlWindowInfo.subsystem != SDL_SYSWM_WINDOWSRT) {
+    if (sdlWindowInfo.subsystem != SDL_SYSWM_WINRT) {
         return nullptr;
         return nullptr;
     }
     }
 
 

+ 1 - 1
src/video/winrt/SDL_winrtvideo.cpp

@@ -230,7 +230,7 @@ WINRT_GetWindowWMInfo(_THIS, SDL_Window * window, SDL_SysWMinfo * info)
     SDL_WindowData * data = (SDL_WindowData *) window->driverdata;
     SDL_WindowData * data = (SDL_WindowData *) window->driverdata;
 
 
     if (info->version.major <= SDL_MAJOR_VERSION) {
     if (info->version.major <= SDL_MAJOR_VERSION) {
-        info->subsystem = SDL_SYSWM_WINDOWSRT;
+        info->subsystem = SDL_SYSWM_WINRT;
         info->info.winrt.window = reinterpret_cast<IUnknown *>(data->coreWindow.Get());
         info->info.winrt.window = reinterpret_cast<IUnknown *>(data->coreWindow.Get());
         return SDL_TRUE;
         return SDL_TRUE;
     } else {
     } else {