git-svn-id: svn://ultimatepp.org/upp/trunk@9554 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-03-03 09:35:13 +00:00
parent a3e2dc1725
commit 90ed642187

View file

@ -4,8 +4,6 @@ using namespace Upp;
CONSOLE_APP_MAIN
{
DUMP(GetWindowsDirectory());
DUMP(GetModuleFileName(LoadLibrary("kernel32")));
DUMP(GetTempPath());
DUMP(GetCurrentDirectory());
@ -15,9 +13,6 @@ CONSOLE_APP_MAIN
DUMP(GetDesktopFolder());
DUMP(GetProgramsFolder());
#ifdef PLATFORM_WIN32
DUMP(GetProgramsFolderX86());
#endif
DUMP(GetAppDataFolder());
DUMP(GetMusicFolder());
DUMP(GetPicturesFolder());
@ -36,4 +31,10 @@ CONSOLE_APP_MAIN
DUMP(ff.GetLength());
DUMP(ff.IsFolder());
}
#ifdef PLATFORM_WIN32
DUMP(GetProgramsFolderX86());
DUMP(GetWindowsDirectory());
DUMP(GetModuleFileName(LoadLibrary("kernel32")));
#endif
}