]> git.sesse.net Git - vlc/commitdiff
CSIDL_COMMON_APPDATA means All Users\Appdata, not MyUser\AppData
authorGeoffroy Couprie <geal@videolan.org>
Mon, 28 Dec 2009 16:09:07 +0000 (17:09 +0100)
committerGeoffroy Couprie <geal@videolan.org>
Mon, 28 Dec 2009 18:11:23 +0000 (19:11 +0100)
src/config/dirs_win.c

index ea7410ebaee264ea8eef64306242bf5b50cb2f18..71d176e778644f650dc6327f8060109b3f351ff6 100644 (file)
@@ -68,7 +68,7 @@ const char *config_GetConfDir (void)
     BOOL WINAPI SHGetSpecialFolderPath(HWND,LPWSTR,int,BOOL);
     if( SHGetSpecialFolderPath( NULL, wdir, CSIDL_APPDATA, 1 ) )
 #else
-    /* Get the "Application Data" folder for the current user */
+    /* Get the "Application Data" folder for all users */
     if( S_OK == SHGetFolderPathW( NULL, CSIDL_COMMON_APPDATA
               | CSIDL_FLAG_CREATE, NULL, SHGFP_TYPE_CURRENT, wdir ) )
 #endif