home *** CD-ROM | disk | FTP | other *** search
/ NEXT Generation 27 / NEXT27.iso / pc / demos / emperor / dx3.exe / SDK / SAMPLES / SETUP / DINSTALL.RC < prev    next >
Text File  |  1996-09-03  |  5KB  |  103 lines

  1. /*==========================================================================
  2.  *
  3.  *  Copyright (C) 1995 Microsoft Corporation.  All Rights Reserved.
  4.  *
  5.  *  File:       dinstall.h
  6.  *  Content:    Game SDK sample setup program
  7.  ***************************************************************************/
  8.  
  9. #include    "windows.h"
  10. #include    "dinstall.h"
  11.  
  12. SETUP_ICON              ICON    DISCARDABLE     "..\\setup.ico"
  13. reboot                  BITMAP  MOVEABLE PURE   "..\\reboot.bmp"
  14. signon                  BITMAP  MOVEABLE PURE   "..\\signon.bmp"
  15.  
  16. DLG_MASTER DIALOG DISCARDABLE   5,50,405,150 
  17. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  18. CAPTION "Microsoft Windows 95 Game SDK"
  19. FONT 8, "Helv"
  20. BEGIN
  21.     CONTROL         "",IDC_STATIC,"Static",SS_BITMAP,15,4,120,120
  22.     CONTROL         "",-1,"Static",SS_BLACKFRAME,15,125,370,1
  23.     PUSHBUTTON      "Next >",IDOK,270,130,50,14,WS_GROUP | WS_VISIBLE
  24.     PUSHBUTTON      "Cancel",IDCANCEL,335,130,50,14,WS_VISIBLE
  25.     PUSHBUTTON      "&Help",IDC_H,155,130,50,14,WS_VISIBLE
  26.     PUSHBUTTON      "< &Back",IDC_B,220,130,50,14,WS_VISIBLE
  27.     
  28.     ; TELL USER WHAT WE ARE DOING AND ASK FOR GAME PATH
  29.     LTEXT           "Setup will install Microsoft DirectX(tm) and 'Rockem 3D.'",
  30.                     IDC_DIRECTIONS1,155,6,203,15,WS_VISIBLE
  31.     LTEXT           "You may enter the directory that you would like 'Rockem 3D' installed in.",
  32.                     IDC_DIRECTIONS2,155,31,203,15,WS_VISIBLE
  33.     LTEXT           "Game Directory:",IDC_EDITTEXT,155,56,55,8,WS_VISIBLE
  34.     EDITTEXT        IDC_EDIT,215,55,130,12,ES_AUTOHSCROLL |
  35.                     ES_OEMCONVERT | WS_VISIBLE
  36.  
  37.     PUSHBUTTON      "Browse...",IDC_BROWSE,350,54,40,14,WS_VISIBLE
  38.     
  39.     LTEXT           "",IDC_INFO,155,80,200,16,WS_VISIBLE
  40.  
  41.     ; ASK PERMISSION TO REBOOT
  42.     LTEXT           "In order to complete the installation of the game it will be necessary to restart your system. Press the Reboot button to restart Windows 95 now.",
  43.                     IDC_REBOOT1,195, 6,175,38,NOT WS_VISIBLE
  44.     LTEXT           "If you do not restart Windows 95 now, the drivers required to make DirectX(tm) work will not be available until the next restart.",
  45.                     IDC_REBOOT2,195,40,175,30,NOT WS_VISIBLE
  46.  
  47.     ; SETUP WAS SUCCESSFULL
  48.     LTEXT           "Setup has completed successfuly.",
  49.                     IDC_SUCCESS,195, 6,175,38,NOT WS_VISIBLE
  50.  
  51. END
  52.  
  53. /* angusm */
  54. STRINGTABLE MOVEABLE DISCARDABLE
  55. LANGUAGE LANG_ENGLISH,SUBLANG_NEUTRAL
  56. BEGIN
  57.     IDS_DEFAULT_GAME_DIR,   "C:\\DirectX Games\\Rockem"
  58.     IDS_TITLE,              "Rockem 3D Setup"
  59.     IDS_GROUP_NAME,         "DirectX Games"
  60.     IDS_LINK_NAME,          "Rockem"
  61.     IDS_FINISH_BUTTON,      "&Finish"
  62.     IDS_REBOOT_BUTTON,      "&Reboot"
  63.     IDS_SIGNON_BITMAP_NAME, "signon"
  64.     IDS_REBOOT_BITMAP_NAME, "reboot"
  65.     IDS_CREATE_MSG,         "Creating directory.."
  66.     IDS_DISK_MSG,           "Checking disk space."
  67.     IDS_INSTALL_MSG,        "Installing DirectX."
  68.     IDS_FAILED_MSG,         "DirectX failed to install. The game was not installed."
  69.     IDS_NTFAILED_MSG,       "Install failed.  The DirectX version which is preinstalled with your copy of Windows NT is lower than the version required by this game.  To get updated DirectX Windows NT components, check out: ftp://ftp.microsoft.com/bussys/winnt/winnt-public/fixes"
  70.     IDS_COPYING_MSG,        "Copying files."
  71.     IDS_CURRENT_FILE_MSG,   "Copying %s"
  72.     IDS_SETUP_FAILURE_MSG,  "Setup Failure: %s could not be copied."
  73.     IDS_STARTUP_MSG,        "Creating StartMenu shortcut"
  74. END
  75.  
  76. STRINGTABLE MOVEABLE DISCARDABLE
  77. LANGUAGE LANG_JAPANESE,SUBLANG_NEUTRAL
  78. BEGIN
  79.     IDS_DEFAULT_GAME_DIR,   "C:\\DirectX Games\\Rockem"
  80.     IDS_TITLE,              "Rockem 3D Setup"
  81.     IDS_GROUP_NAME,         "DirectX Games"
  82.     IDS_LINK_NAME,          "Rockem"
  83.     IDS_FINISH_BUTTON,      "&Finish"
  84.     IDS_REBOOT_BUTTON,      "&Reboot"
  85.     IDS_SIGNON_BITMAP_NAME, "signon"
  86.     IDS_REBOOT_BITMAP_NAME, "reboot"
  87.     IDS_CREATE_MSG,         "Creating directory.."
  88.     IDS_DISK_MSG,           "Checking disk space."
  89.     IDS_INSTALL_MSG,        "Installing DirectX."
  90.     IDS_FAILED_MSG,         "DirectX failed to install. The game was not installed."
  91.     IDS_NTFAILED_MSG,       "Install failed.  The DirectX version which is preinstalled with your copy of Windows NT is lower than the version required by this game.  To get updated DirectX Windows NT components, check out: ftp://ftp.microsoft.com/bussys/winnt/winnt-public/fixes"
  92.     IDS_COPYING_MSG,        "Copying files."
  93.     IDS_CURRENT_FILE_MSG,   "Copying %s"
  94.     IDS_SETUP_FAILURE_MSG,  "Setup Failure: %s could not be copied."
  95.     IDS_STARTUP_MSG,        "Creating StartMenu shortcut"
  96. END
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.