53 lines
1.5 KiB
Plaintext
53 lines
1.5 KiB
Plaintext
|
#include <windows.h>
|
||
|
#include "winnt32.h"
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// String Table
|
||
|
//
|
||
|
|
||
|
STRINGTABLE BEGIN
|
||
|
IDS_APPNAME "Windows Setup"
|
||
|
IDS_DLLERROR "The file %s could not be loaded or is corrupt. Setup cannot continue."
|
||
|
IDS_VERERROR "This application requires Windows 95 or later or Windows NT 4.00 or later. Earlier versions of Windows NT cannot be directly upgraded to Windows XP."
|
||
|
IDS_PATHERROR "The path specified for Dynamic Updates '%s' is not accessible. Setup cannot continue."
|
||
|
END
|
||
|
|
||
|
#ifdef _X86_
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Bitmap
|
||
|
//
|
||
|
|
||
|
IDB_INIT_WIN2000 BITMAP DISCARDABLE "i386\initw2k.bmp"
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Dialog
|
||
|
//
|
||
|
|
||
|
IDD_SETUPINIT DIALOG DISCARDABLE 0, 0, 275, 71
|
||
|
STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION
|
||
|
CAPTION "Windows Setup"
|
||
|
FONT 8, "MS Shell Dlg"
|
||
|
BEGIN
|
||
|
CONTROL IDB_INIT_WIN2000,IDC_BITMAP,"Static",SS_BITMAP,0,0,278,44
|
||
|
CTEXT "Starting Windows Setup...",IDC_TEXT,
|
||
|
45,54,137,8
|
||
|
END
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#include <ntverp.h>
|
||
|
|
||
|
#define VER_FILETYPE VFT_APP
|
||
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
||
|
#define VER_FILEDESCRIPTION_STR "Stub loader for WINNT32 setup program"
|
||
|
#define VER_INTERNALNAME_STR "winnt32\0"
|
||
|
#define VER_ORIGINALFILENAME_STR "WINNT32.EXE"
|
||
|
|
||
|
#include <common.ver>
|
||
|
|
||
|
|