WinRT: more "Windows RT" to "WinRT" renaming

This commit is contained in:
David Ludwig
2013-08-27 12:20:35 -04:00
parent 3070086431
commit 1e78c4a5d1
9 changed files with 219 additions and 219 deletions

View File

@@ -40,7 +40,7 @@
#define SDL_MAIN_AVAILABLE
#elif defined(__WINRT__)
/* On Windows RT, SDL provides a main function that initializes CoreApplication,
/* On WinRT, SDL provides a main function that initializes CoreApplication,
creating an instance of IFrameworkView in the process.
Please note that #include'ing SDL_main.h is not enough to get a main()

View File

@@ -73,7 +73,7 @@
#ifdef HAVE_MATH_H
# if defined(__WINRT__)
/* Defining _USE_MATH_DEFINES is required to get M_PI to be defined on
Windows RT. See http://msdn.microsoft.com/en-us/library/4hwaceh6.aspx
WinRT. See http://msdn.microsoft.com/en-us/library/4hwaceh6.aspx
for more information.
*/
# define _USE_MATH_DEFINES

View File

@@ -94,11 +94,11 @@ extern DECLSPEC const char * SDLCALL SDL_AndroidGetExternalStoragePath();
#endif /* __ANDROID__ */
/* Platform specific functions for Windows RT */
/* Platform specific functions for WinRT */
#if defined(__WINRT__) && __WINRT__
/**
* \brief Windows RT / Windows Phone path types
* \brief WinRT / Windows Phone path types
*/
typedef enum
{
@@ -122,9 +122,9 @@ typedef enum
/**
* \brief Retrieves a Windows RT defined path on the local file system
* \brief Retrieves a WinRT defined path on the local file system
*
* \note Documentation on most app-specific path types on Windows RT
* \note Documentation on most app-specific path types on WinRT
* can be found on MSDN, at the URL:
* http://msdn.microsoft.com/en-us/library/windows/apps/hh464917.aspx
*
@@ -139,9 +139,9 @@ typedef enum
extern DECLSPEC const wchar_t * SDLCALL SDL_WinRTGetFSPathUNICODE(SDL_WinRT_Path pathType);
/**
* \brief Retrieves a Windows RT defined path on the local file system
* \brief Retrieves a WinRT defined path on the local file system
*
* \note Documentation on most app-specific path types on Windows RT
* \note Documentation on most app-specific path types on WinRT
* can be found on MSDN, at the URL:
* http://msdn.microsoft.com/en-us/library/windows/apps/hh464917.aspx
*

View File

@@ -177,7 +177,7 @@ struct SDL_SysWMinfo
#if defined(SDL_VIDEO_DRIVER_WINRT)
struct
{
IUnknown * window; /**< The Windows RT CoreWindow */
IUnknown * window; /**< The WinRT CoreWindow */
} winrt;
#endif
#if defined(SDL_VIDEO_DRIVER_X11)