mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
_MAX_PATH > MAXPATH
Shortcut to winemine, but commented out as winemine is broken. svn path=/trunk/; revision=18702
This commit is contained in:
parent
37295e7c83
commit
1e8113e6e3
2 changed files with 16 additions and 16 deletions
|
@ -400,7 +400,7 @@ InstallReactOS (HINSTANCE hInstance)
|
||||||
{
|
{
|
||||||
TCHAR sAccessories[256];
|
TCHAR sAccessories[256];
|
||||||
TCHAR sGames[256];
|
TCHAR sGames[256];
|
||||||
TCHAR Sys[_MAX_PATH];
|
TCHAR Sys[MAX_PATH];
|
||||||
|
|
||||||
|
|
||||||
# if 0
|
# if 0
|
||||||
|
@ -449,16 +449,15 @@ InstallReactOS (HINSTANCE hInstance)
|
||||||
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);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!GetSystemDirectory(Sys, _MAX_PATH))
|
|
||||||
Sys[0] = L'\0';
|
|
||||||
|
|
||||||
/* create Games subfolder and fill if the exe is available */
|
/* create Games subfolder and fill if the exe is available */
|
||||||
if (CreateShortcutFolder(CSIDL_PROGRAMS, IDS_GAMES, sGames, 256)) {
|
if (CreateShortcutFolder(CSIDL_PROGRAMS, IDS_GAMES, sGames, 256)) {
|
||||||
if (Sys[0] != L'\0') {
|
if(GetSystemDirectory(Sys, MAX_PATH)) {
|
||||||
if((_taccess(_tcscat(Sys, _T("\\sol.exe")), 0 )) != -1)
|
if((_taccess(_tcscat(Sys, _T("\\sol.exe")), 0 )) != -1)
|
||||||
CreateShortcut(CSIDL_PROGRAMS, sGames, _T("Solitaire.lnk"), _T("sol.exe"), IDS_CMT_SOLITAIRE);
|
CreateShortcut(CSIDL_PROGRAMS, sGames, _T("Solitaire.lnk"), _T("sol.exe"), IDS_CMT_SOLITAIRE);
|
||||||
|
/* winemine is broken
|
||||||
/* winemine etc .... */
|
if((_taccess(_tcscat(Sys, _T("\\winemine.exe")), 0 )) != -1)
|
||||||
|
CreateShortcut(CSIDL_PROGRAMS, sGames, _T("winemine.lnk"), _T("winemine.exe"), IDS_CMT_WINEMINE); */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,20 +20,20 @@
|
||||||
#define RESOURCE_H
|
#define RESOURCE_H
|
||||||
|
|
||||||
#define IDB_WATERMARK 100
|
#define IDB_WATERMARK 100
|
||||||
#define IDB_HEADER 101
|
#define IDB_HEADER 101
|
||||||
|
|
||||||
#define IDC_STATIC -1
|
#define IDC_STATIC -1
|
||||||
|
|
||||||
#define IDD_WELCOMEPAGE 1000
|
#define IDD_WELCOMEPAGE 1000
|
||||||
#define IDC_WELCOMETITLE 1001
|
#define IDC_WELCOMETITLE 1001
|
||||||
|
|
||||||
#define IDD_ACKPAGE 1010
|
#define IDD_ACKPAGE 1010
|
||||||
#define IDC_PROJECTS 1011
|
#define IDC_PROJECTS 1011
|
||||||
#define IDC_VIEWGPL 1012
|
#define IDC_VIEWGPL 1012
|
||||||
|
|
||||||
#define IDD_OWNERPAGE 1020
|
#define IDD_OWNERPAGE 1020
|
||||||
#define IDC_OWNERNAME 1021
|
#define IDC_OWNERNAME 1021
|
||||||
#define IDC_OWNERORGANIZATION 1022
|
#define IDC_OWNERORGANIZATION 1022
|
||||||
|
|
||||||
#define IDD_COMPUTERPAGE 1030
|
#define IDD_COMPUTERPAGE 1030
|
||||||
#define IDC_COMPUTERNAME 1031
|
#define IDC_COMPUTERNAME 1031
|
||||||
|
@ -59,11 +59,11 @@
|
||||||
#define IDC_FINISHTITLE 1071
|
#define IDC_FINISHTITLE 1071
|
||||||
|
|
||||||
|
|
||||||
#define IDD_RESTART 2000
|
#define IDD_RESTART 2000
|
||||||
#define IDC_RESTART_PROGRESS 2001
|
#define IDC_RESTART_PROGRESS 2001
|
||||||
|
|
||||||
#define IDD_GPL 2100
|
#define IDD_GPL 2100
|
||||||
#define IDC_GPL_TEXT 2101
|
#define IDC_GPL_TEXT 2101
|
||||||
|
|
||||||
#define IDS_ACKTITLE 3010
|
#define IDS_ACKTITLE 3010
|
||||||
#define IDS_ACKSUBTITLE 3011
|
#define IDS_ACKSUBTITLE 3011
|
||||||
|
@ -94,7 +94,8 @@
|
||||||
#define IDS_CMT_NOTEPAD 3213
|
#define IDS_CMT_NOTEPAD 3213
|
||||||
#define IDS_CMT_REGEDIT 3214
|
#define IDS_CMT_REGEDIT 3214
|
||||||
#define IDS_CMT_SOLITAIRE 3215
|
#define IDS_CMT_SOLITAIRE 3215
|
||||||
|
#define IDS_CMT_WINEMINE 3216
|
||||||
|
|
||||||
#define IDR_GPL 4000
|
#define IDR_GPL 4000
|
||||||
|
|
||||||
#endif /* RESOURCE_H */
|
#endif /* RESOURCE_H */
|
||||||
|
|
Loading…
Reference in a new issue