mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 10:22:59 +00:00
setup 'Games' subfolder ready for Solitaire, etc.
svn path=/trunk/; revision=18645
This commit is contained in:
parent
6f1abc4b16
commit
2a39898c1e
3 changed files with 15 additions and 6 deletions
|
@ -398,6 +398,7 @@ DWORD STDCALL
|
||||||
InstallReactOS (HINSTANCE hInstance)
|
InstallReactOS (HINSTANCE hInstance)
|
||||||
{
|
{
|
||||||
TCHAR sAccessories[256];
|
TCHAR sAccessories[256];
|
||||||
|
TCHAR sGames[256];
|
||||||
|
|
||||||
# if 0
|
# if 0
|
||||||
OutputDebugStringA ("InstallReactOS() called\n");
|
OutputDebugStringA ("InstallReactOS() called\n");
|
||||||
|
@ -439,12 +440,14 @@ InstallReactOS (HINSTANCE hInstance)
|
||||||
|
|
||||||
/* create and fill Accessories subfolder */
|
/* create and fill Accessories subfolder */
|
||||||
if (CreateShortcutFolder(CSIDL_PROGRAMS, IDS_ACCESSORIES, sAccessories, 256)) {
|
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("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("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("explorer.lnk"), _T("explorer.exe"), IDS_CMT_EXPLORER);
|
||||||
CreateShortcut(CSIDL_PROGRAMS, sAccessories, _T("regedit.lnk"), _T("regedit.exe"), IDS_CMT_REGEDIT);
|
CreateShortcut(CSIDL_PROGRAMS, sAccessories, _T("regedit.lnk"), _T("regedit.exe"), IDS_CMT_REGEDIT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* create Games subfolder */
|
||||||
|
CreateShortcutFolder(CSIDL_PROGRAMS, IDS_GAMES, sGames, 256);
|
||||||
|
|
||||||
CoUninitialize();
|
CoUninitialize();
|
||||||
|
|
||||||
|
|
|
@ -72,27 +72,27 @@
|
||||||
#define IDS_OWNERSUBTITLE 3021
|
#define IDS_OWNERSUBTITLE 3021
|
||||||
|
|
||||||
#define IDS_COMPUTERTITLE 3030
|
#define IDS_COMPUTERTITLE 3030
|
||||||
#define IDS_COMPUTERSUBTITLE 3031
|
#define IDS_COMPUTERSUBTITLE 3031
|
||||||
|
|
||||||
#define IDS_LOCALETITLE 3040
|
#define IDS_LOCALETITLE 3040
|
||||||
#define IDS_LOCALESUBTITLE 3041
|
#define IDS_LOCALESUBTITLE 3041
|
||||||
|
|
||||||
#define IDS_DATETIMETITLE 3050
|
#define IDS_DATETIMETITLE 3050
|
||||||
#define IDS_DATETIMESUBTITLE 3051
|
#define IDS_DATETIMESUBTITLE 3051
|
||||||
|
|
||||||
#define IDS_PROCESSTITLE 3060
|
#define IDS_PROCESSTITLE 3060
|
||||||
#define IDS_PROCESSSUBTITLE 3061
|
#define IDS_PROCESSSUBTITLE 3061
|
||||||
|
|
||||||
#define IDS_ACKPROJECTS 3100
|
#define IDS_ACKPROJECTS 3100
|
||||||
|
|
||||||
#define IDS_ACCESSORIES 3200
|
#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_EXPLORER 3211
|
||||||
#define IDS_CMT_WINEFILE 3212
|
#define IDS_CMT_WINEFILE 3212
|
||||||
#define IDS_CMT_NOTEPAD 3213
|
#define IDS_CMT_NOTEPAD 3213
|
||||||
#define IDS_CMT_REGEDIT 3214
|
#define IDS_CMT_REGEDIT 3214
|
||||||
#define IDS_CMT_CALC 3215
|
|
||||||
|
|
||||||
#define IDR_GPL 4000
|
#define IDR_GPL 4000
|
||||||
|
|
||||||
|
|
|
@ -204,4 +204,10 @@ BEGIN
|
||||||
IDS_CMT_REGEDIT "Launch Registry Editor"
|
IDS_CMT_REGEDIT "Launch Registry Editor"
|
||||||
END
|
END
|
||||||
|
|
||||||
|
STRINGTABLE
|
||||||
|
BEGIN
|
||||||
|
IDS_GAMES "Games"
|
||||||
|
END
|
||||||
|
|
||||||
|
|
||||||
/* EOF */
|
/* EOF */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue