Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.5 KiB

  1. #include <windows.h>
  2. #include "winnt32.h"
  3. /////////////////////////////////////////////////////////////////////////////
  4. //
  5. // String Table
  6. //
  7. STRINGTABLE BEGIN
  8. IDS_APPNAME "Windows Setup"
  9. IDS_DLLERROR "The file %s could not be loaded or is corrupt. Setup cannot continue."
  10. 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."
  11. IDS_PATHERROR "The path specified for Dynamic Updates '%s' is not accessible. Setup cannot continue."
  12. END
  13. #ifdef _X86_
  14. /////////////////////////////////////////////////////////////////////////////
  15. //
  16. // Bitmap
  17. //
  18. IDB_INIT_WIN2000 BITMAP DISCARDABLE "i386\initw2k.bmp"
  19. /////////////////////////////////////////////////////////////////////////////
  20. //
  21. // Dialog
  22. //
  23. IDD_SETUPINIT DIALOG DISCARDABLE 0, 0, 275, 71
  24. STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION
  25. CAPTION "Windows Setup"
  26. FONT 8, "MS Shell Dlg"
  27. BEGIN
  28. CONTROL IDB_INIT_WIN2000,IDC_BITMAP,"Static",SS_BITMAP,0,0,278,44
  29. CTEXT "Starting Windows Setup...",IDC_TEXT,
  30. 45,54,137,8
  31. END
  32. #endif
  33. #include <ntverp.h>
  34. #define VER_FILETYPE VFT_APP
  35. #define VER_FILESUBTYPE VFT2_UNKNOWN
  36. #define VER_FILEDESCRIPTION_STR "Stub loader for WINNT32 setup program"
  37. #define VER_INTERNALNAME_STR "winnt32\0"
  38. #define VER_ORIGINALFILENAME_STR "WINNT32.EXE"
  39. #include <common.ver>