setup 'Games' subfolder ready for Solitaire, etc.

svn path=/trunk/; revision=18645
This commit is contained in:
Ged Murphy 2005-10-20 21:11:56 +00:00
parent 6f1abc4b16
commit 2a39898c1e
3 changed files with 15 additions and 6 deletions

View file

@ -398,6 +398,7 @@ DWORD STDCALL
InstallReactOS (HINSTANCE hInstance)
{
TCHAR sAccessories[256];
TCHAR sGames[256];
# if 0
OutputDebugStringA ("InstallReactOS() called\n");
@ -439,12 +440,14 @@ InstallReactOS (HINSTANCE hInstance)
/* create and fill Accessories subfolder */
if (CreateShortcutFolder(CSIDL_PROGRAMS, IDS_ACCESSORIES, sAccessories, 256)) {
//CreateShortcut(CSIDL_PROGRAMS, sAccessories, _T("Calculator.lnk"), _T("calc.exe"), IDS_CMT_CALC);
CreateShortcut(CSIDL_PROGRAMS, sAccessories, _T("Command Prompt.lnk"), _T("cmd.exe"), IDS_CMT_CMD);
CreateShortcut(CSIDL_PROGRAMS, sAccessories, _T("notepad.lnk"), _T("notepad.exe"), IDS_CMT_NOTEPAD);
CreateShortcut(CSIDL_PROGRAMS, sAccessories, _T("explorer.lnk"), _T("explorer.exe"), IDS_CMT_EXPLORER);
CreateShortcut(CSIDL_PROGRAMS, sAccessories, _T("regedit.lnk"), _T("regedit.exe"), IDS_CMT_REGEDIT);
}
/* create Games subfolder */
CreateShortcutFolder(CSIDL_PROGRAMS, IDS_GAMES, sGames, 256);
CoUninitialize();

View file

@ -72,27 +72,27 @@
#define IDS_OWNERSUBTITLE 3021
#define IDS_COMPUTERTITLE 3030
#define IDS_COMPUTERSUBTITLE 3031
#define IDS_COMPUTERSUBTITLE 3031
#define IDS_LOCALETITLE 3040
#define IDS_LOCALESUBTITLE 3041
#define IDS_DATETIMETITLE 3050
#define IDS_DATETIMESUBTITLE 3051
#define IDS_DATETIMESUBTITLE 3051
#define IDS_PROCESSTITLE 3060
#define IDS_PROCESSSUBTITLE 3061
#define IDS_ACKPROJECTS 3100
#define IDS_ACKPROJECTS 3100
#define IDS_ACCESSORIES 3200
#define IDS_GAMES 3201
#define IDS_CMT_CMD 3210
#define IDS_CMT_CMD 3210
#define IDS_CMT_EXPLORER 3211
#define IDS_CMT_WINEFILE 3212
#define IDS_CMT_NOTEPAD 3213
#define IDS_CMT_REGEDIT 3214
#define IDS_CMT_CALC 3215
#define IDR_GPL 4000

View file

@ -204,4 +204,10 @@ BEGIN
IDS_CMT_REGEDIT "Launch Registry Editor"
END
STRINGTABLE
BEGIN
IDS_GAMES "Games"
END
/* EOF */