Moving some folders around in the windows file system.
This commit is contained in:
@@ -18,6 +18,21 @@ RString SpecialDirs::GetAppDataDir()
|
||||
return GetSpecialFolderPath( CSIDL_APPDATA );
|
||||
}
|
||||
|
||||
RString SpecialDirs::GetLocalAppDataDir()
|
||||
{
|
||||
return GetSpecialFolderPath( CSIDL_LOCAL_APPDATA );
|
||||
}
|
||||
|
||||
RString SpecialDirs::GetCommonAppDataDir()
|
||||
{
|
||||
return GetSpecialFolderPath( CSIDL_COMMON_APPDATA );
|
||||
}
|
||||
|
||||
RString SpecialDirs::GetPicturesDir()
|
||||
{
|
||||
return GetSpecialFolderPath( CSIDL_MYPICTURES );
|
||||
}
|
||||
|
||||
RString SpecialDirs::GetDesktopDir()
|
||||
{
|
||||
return GetSpecialFolderPath( CSIDL_DESKTOP );
|
||||
|
||||
@@ -4,6 +4,9 @@
|
||||
namespace SpecialDirs
|
||||
{
|
||||
RString GetAppDataDir();
|
||||
RString GetLocalAppDataDir();
|
||||
RString GetCommonAppDataDir();
|
||||
RString GetPicturesDir();
|
||||
RString GetDesktopDir();
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user