Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WinRT: added a comment regarding the lack of SHGetFolderPath on WinRT
  • Loading branch information
DavidLudwig committed Oct 28, 2013
1 parent 3236fc3 commit ea12ff9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/filesystem/winrt/SDL_sysfilesystem.cpp
Expand Up @@ -118,6 +118,12 @@ SDL_GetBasePath(void)
extern "C" char *
SDL_GetPrefPath(const char *org, const char *app)
{
/* WinRT note: The 'SHGetFolderPath' API that is used in Windows 7 and
* earlier is not available on WinRT or Windows Phone. WinRT provides
* a similar API, but SHGetFolderPath can't be called, at least not
* without violating Microsoft's app-store requirements.
*/

#if WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
/* A 'Roaming' folder is not available in Windows Phone 8, however a 'Local' folder is. */
const char * srcPath = SDL_WinRTGetFSPathUTF8(SDL_WINRT_PATH_LOCAL_FOLDER);
Expand Down

0 comments on commit ea12ff9

Please sign in to comment.