72 lines
2.8 KiB
C
72 lines
2.8 KiB
C
|
|
#ifndef _RESOURCE_H
|
|
#define _RESOURCE_H
|
|
|
|
|
|
#define IDC_STATIC -1
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Dialogs
|
|
//-----------------------------------------------------------------------------
|
|
#define IDD_PromptForPath 1001
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Controls
|
|
//-----------------------------------------------------------------------------
|
|
#define IDC_STPromptDlgText 3001
|
|
#define IDC_EBPath 3002
|
|
#define IDC_BNBrowse 3003
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Localized Strings
|
|
//-----------------------------------------------------------------------------
|
|
#define IDS_BOSPrepFailed 10
|
|
#define IDS_BOSCancelCDPrompt 11
|
|
#define IDS_BOSPromptTitle 13
|
|
#define IDS_PromptTitle2 14
|
|
#define IDS_CantFindMsg 15
|
|
#define IDS_ChooseFolderTitle 17
|
|
#define IDS_BOSPrompt 18
|
|
#define IDS_SBSPrompt 19
|
|
#define IDS_BOSTitle 20
|
|
#define IDS_SBSTitle 21
|
|
#define IDS_SBSCancelCDPrompt 22
|
|
#define IDS_SBSPromptTitle 23
|
|
#define IDS_BrowseFailed 24
|
|
#define IDS_ErrorTitle 25
|
|
|
|
#define IDS_WinSBPrompt 26
|
|
#define IDS_WinSBTitle 27
|
|
#define IDS_WinSBCancelCDPrompt 28
|
|
#define IDS_WinSBPromptTitle 29
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Non-loc'd Strings
|
|
//-----------------------------------------------------------------------------
|
|
#define IDS_Version 8000
|
|
#define IDS_UserInitKeyLoc 8001
|
|
#define IDS_UserInitKeyName 8002
|
|
#define IDS_CfgSrvKeyLoc 8003
|
|
#define IDS_CfgSrvKeyName 8004
|
|
#define IDS_SourcePathLoc 8005
|
|
#define IDS_SourcePathName 8006
|
|
#define IDS_SetupSwitch 8007
|
|
#define IDS_BOSPrepLocEnd 8008
|
|
#define IDS_BOlnk 8009
|
|
#define IDS_SetupExe 8010
|
|
#define IDS_SBSSwitch 8011
|
|
#define IDS_EXEName 8012
|
|
|
|
#define IDS_StoreExeKey 8013
|
|
#define IDS_SBSUpgrade 8014
|
|
#define IDS_SBSUpgradeVal 8015
|
|
#define IDS_DllPatchSBSUpgrade 8016
|
|
#define IDS_DllPatchVal 8017
|
|
|
|
#endif
|
|
|