winrt: Removed WinRT/Windows Phone/UWP support.

Fixes #10724.
This commit is contained in:
Ryan C. Gordon
2024-09-05 23:36:16 -04:00
parent 6d7c211faf
commit 154452a726
126 changed files with 150 additions and 9582 deletions

View File

@@ -85,9 +85,6 @@ SDL_bool SDL_GetCurrentTime(SDL_Time *ticks)
SDL_zero(ft);
#ifdef SDL_PLATFORM_WINRT
GetSystemTimePreciseAsFileTime(&ft);
#else
static pfnGetSystemTimePreciseAsFileTime pGetSystemTimePreciseAsFileTime = NULL;
static bool load_attempted = false;
@@ -105,7 +102,6 @@ SDL_bool SDL_GetCurrentTime(SDL_Time *ticks)
} else {
GetSystemTimeAsFileTime(&ft);
}
#endif
*ticks = SDL_TimeFromWindows(ft.dwLowDateTime, ft.dwHighDateTime);