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.

157 lines
5.0 KiB

  1. /******************************************************************************
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. resource.h
  5. Abstract:
  6. Contains constant definitions for resources.
  7. Revision History:
  8. Seong Kook Khang (SKKhang) 06/20/00
  9. created
  10. ******************************************************************************/
  11. #ifndef _RESOURCE_H__INCLUDED_
  12. #define _RESOURCE_H__INCLUDED_
  13. #pragma once
  14. /////////////////////////////////////////////////////////////////////////////
  15. //
  16. // CONSTANTS
  17. //
  18. /////////////////////////////////////////////////////////////////////////////
  19. #define IDC_STATIC -1
  20. #ifndef TBS_DOWNISLEFT
  21. #define TBS_DOWNISLEFT 0x0400
  22. #endif
  23. /////////////////////////////////////////////////////////////////////////////
  24. //
  25. // ICON IDs
  26. //
  27. /////////////////////////////////////////////////////////////////////////////
  28. #define IDI_SYSTEMRESTORE 101
  29. #define IDI_DRIVE_FIXED 102
  30. /////////////////////////////////////////////////////////////////////////////
  31. //
  32. // BITMAP IDs
  33. //
  34. /////////////////////////////////////////////////////////////////////////////
  35. #define IDB_PROG_BRAND4 111
  36. #define IDB_PROG_BRAND8 112
  37. /////////////////////////////////////////////////////////////////////////////
  38. //
  39. // STRING IDs
  40. //
  41. /////////////////////////////////////////////////////////////////////////////
  42. #define IDS_SYSTEMRESTORE 256
  43. #define IDS_DRVSTAT_ACTIVE 272
  44. #define IDS_DRVSTAT_FROZEN 273
  45. #define IDS_DRVSTAT_EXCLUDED 274
  46. #define IDS_DRVSTAT_OFFLINE 282
  47. #define IDS_DRIVEPROP_TITLE 275
  48. #define IDS_DRIVE_SUMMARY 276
  49. #define IDS_SYSDRV_CANNOT_OFF 277
  50. #define IDS_DRVLIST_COL_NAME 278
  51. #define IDS_DRVLIST_COL_STATUS 279
  52. #define IDS_CONFIRM_TURN_SR_OFF 280
  53. #define IDS_CONFIRM_TURN_DRV_OFF 281
  54. #define IDS_GROUP_POLICY_ON_OFF 283
  55. #define IDS_GROUP_POLICY_CONFIG_ON_OFF 284
  56. #define IDS_RESTORE_POINT_TEXT 288
  57. #define IDS_ERROR_LOWPRIVILEGE 289
  58. #define IDS_DRIVE_SUMMARY_NO_LABEL 290
  59. #define IDS_SYSDRV_CANNOT_OFF_NO_LABEL 291
  60. #define IDS_PROGRESS_PREPARE 292
  61. #define IDS_PROGRESS_RESTORE 293
  62. #define IDS_PROGRESS_SNAPSHOT 294
  63. #define IDS_ERR_SR_SAFEMODE 295
  64. #define IDS_ERR_SR_ON_OFF 296
  65. #define IDS_SYSTEM_CHECKPOINT_TEXT 297
  66. /////////////////////////////////////////////////////////////////////////////
  67. //
  68. // DIALOG IDs
  69. //
  70. /////////////////////////////////////////////////////////////////////////////
  71. // Common Control IDs for Configuration Dialogs
  72. //
  73. // NOTE:
  74. // The ID range from 1010 to 1019 are reserved for controls those
  75. // should be disabled if SR is turned off.
  76. //
  77. #define IDC_TURN_OFF 1001
  78. #define IDC_DRIVE_SUMMARY 1002
  79. #define IDC_USAGE_GROUPBOX 1011 // Usage Settings Group-Box (static)
  80. #define IDC_USAGE_HOWTO 1012 // Usage Settings Explanation Text (static)
  81. #define IDC_USAGE_LABEL 1013 // Slider Label Text (static)
  82. #define IDC_USAGE_SLIDER 1014 // Slider to Adjust Usage
  83. #define IDC_USAGE_MIN 1015 // Label indicating Slider "Min"
  84. #define IDC_USAGE_MAX 1016 // Label indicating Slider "Max"
  85. #define IDC_USAGE_VALUE 1017 // Current Usage Value Text
  86. #define IDC_DCU_HOWTO 1021 // Disk Cleanup Utility Explanation Text For Single Drive
  87. #define IDC_DCU_INVOKE 1022 // Button to Run Disk Cleanup Utility
  88. #define IDC_SYSTEM_DCU_HOWTO 1023 // Disk Cleanup Utility Explanation Text For System Drive (with multiple drives)
  89. #define IDC_NORMAL_DCU_HOWTO 1024 // Disk Cleanup Utility Explanation Text For Normal Drive (with multiple drives)
  90. // System Restore Tab for System CPL, Single Drive
  91. //
  92. #define IDD_SYSPROP_SINGLE 11
  93. #define IDC_SD_STATUS 1101 // Status Text for Single Drive
  94. #define IDC_SD_ICON 1102 // Drive Icon for Single Drive
  95. // System Restore Tab for System CPL, Multiple Drives
  96. //
  97. #define IDD_SYSPROP_MULTI 12
  98. #define IDC_DRIVE_GROUPBOX 1201
  99. #define IDC_DRIVE_HOWTO 1202
  100. #define IDC_DRIVE_LABEL 1203
  101. #define IDC_DRIVE_LIST 1204 // List Control for Drives
  102. #define IDC_DRIVE_SETTINGS 1205 // Button to Invoke Settings Dialog
  103. #define IDC_RESTOREHELP_LINK 1206 // link to launch restore UI
  104. // System Drive Settings Dialog for Multiple Drives
  105. //
  106. #define IDD_SYSPROP_SYSTEM 13
  107. #define IDC_SYSDRV_CANNOT_OFF 1301
  108. // Normal Drive Settings Dialog for Multiple Drives
  109. //
  110. #define IDD_SYSPROP_NORMAL 14
  111. // Frozen Drive Settings Dialogs
  112. //
  113. #define IDD_SYSPROP_SYSTEM_FROZEN 15
  114. #define IDD_SYSPROP_NORMAL_FROZEN 16
  115. // Progress Dialog Box
  116. //
  117. #define IDD_PROGRESS 21
  118. #define IDC_PROGDLG_BRAND 2101
  119. #define IDC_PROGDLG_BITMAP 2102
  120. #define IDC_PROGDLG_TITLE 2103
  121. #define IDC_PROGDLG_BAR 2104
  122. #define IDC_PROGDLG_STATUS 2105
  123. #endif //_RESOURCE_H__INCLUDED_