Source code of Windows XP (NT5)
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.

115 lines
4.3 KiB

  1. #ifndef __SHCOMPUI_RESIDS_H
  2. #define __SHCOMPUI_RESIDS_H
  3. ///////////////////////////////////////////////////////////////////////////////
  4. //
  5. // Microsoft Windows
  6. // Copyright (C) Microsoft Corporation, 1995.
  7. //
  8. // FILE: RESIDS.H
  9. //
  10. // DESCRIPTION:
  11. //
  12. // Resource IDs for SHCOMPUI.DLL.
  13. //
  14. //
  15. // REVISIONS:
  16. //
  17. // Date Description Programmer
  18. // ---------- --------------------------------------------------- ----------
  19. // 09/15/95 Initial creation. brianau
  20. //
  21. ///////////////////////////////////////////////////////////////////////////////
  22. #ifdef WINNT
  23. //
  24. // Confirmation dialog ids.
  25. //
  26. #define DLG_COMPRESS_CONFIRMATION 100 // The dialog.
  27. #define IDC_COMPRESS_CONFIRM_TEXT 101 // Text message control ID.
  28. #define IDC_COMPRESS_SUBFOLDERS 102 // "Also compress sub-folders." cbx control.
  29. #define IDC_COMPRESS_ACTION_TEXT 103
  30. //
  31. // Progress dialog ids.
  32. //
  33. #define DLG_COMPRESS_PROGRESS 104
  34. #define DLG_UNCOMPRESS_PROGRESS 105
  35. #define DLG_COMPRESS_ERROR 106
  36. //
  37. // Compression progress dialog control IDs.
  38. //
  39. #define IDC_COMPRESS_FILE 107 // "Current" file name.
  40. #define IDC_COMPRESS_DIR 108 // "Current" directory text.
  41. #define IDC_COMPRESS_DIRCNT 109 // Count of directories processed.
  42. #define IDC_COMPRESS_FILECNT 110 // Count of files processed.
  43. #define IDC_COMPRESS_USIZE 111 // Cummulative pre-compression bytes.
  44. #define IDC_COMPRESS_CSIZE 112 // Cummulative post-compression bytes.
  45. #define IDC_COMPRESS_RATIO 113 // Cummulative compression ratio as pct.
  46. #define IDC_TEXT1 114
  47. //
  48. // Uncompression progress dialog control IDs.
  49. //
  50. #define IDC_UNCOMPRESS_FILE 115 // "Current" file name.
  51. #define IDC_UNCOMPRESS_DIR 116 // "Current" directory text.
  52. #define IDC_UNCOMPRESS_DIRCNT 117 // Count of directories processed.
  53. #define IDC_UNCOMPRESS_FILECNT 118 // Count of files processed.
  54. //
  55. // Compression error dialog control IDs.
  56. //
  57. #define IDC_COMPRESS_IGNOREALL 119 // "Ignore all errors" button control.
  58. #define IDC_COMPRESS_ERRTEXT 120 // Error message text control.
  59. //
  60. // Context menu extension string ids.
  61. //
  62. #define IDS_COMPRESS_CMDVERB 200 // Command string returned to shell.
  63. #define IDS_COMPRESS_MENUITEM 201 // Context menu item.
  64. #define IDS_COMPRESS_MENUITEM_ELLIP 202 // Context menu item with ellipsis.
  65. #define IDS_COMPRESS_SBARTEXT 203 // Status bar text, single file.
  66. #define IDS_COMPRESS_SBARTEXT_M 204 // Status bar text, multiple files.
  67. #define IDS_COMPRESS_SBARTEXT_DRV 205 // Status bar text, single drive.
  68. #define IDS_COMPRESS_SBARTEXT_DRV_M 206 // Status bar text, multiple drives.
  69. #define IDS_UNCOMPRESS_CMDVERB 207 // Command string returned to shell.
  70. #define IDS_UNCOMPRESS_MENUITEM 208 // Context menu item.
  71. #define IDS_UNCOMPRESS_MENUITEM_ELLIP 209 // Context menu item with ellipsis.
  72. #define IDS_UNCOMPRESS_SBARTEXT 210 // Status bar text, single file.
  73. #define IDS_UNCOMPRESS_SBARTEXT_M 211 // Status bar text, multiple file.
  74. #define IDS_UNCOMPRESS_SBARTEXT_DRV 212 // Status bar text, single drive.
  75. #define IDS_UNCOMPRESS_SBARTEXT_DRV_M 213 // Status bar text, multiple drives.
  76. //
  77. // Miscellaneous compression support string ids.
  78. //
  79. #define IDS_COMPRESS_DIR 214
  80. #define IDS_UNCOMPRESS_DIR 215
  81. #define IDS_COMPRESS_ATTRIB_ERR 216
  82. #define IDS_NTLDR_COMPRESS_ERR 217
  83. #define IDS_MULTI_COMPRESS_ERR 218
  84. //
  85. // Confirmation dialog string ids.
  86. //
  87. #define IDS_COMPRESS_CONFIRMATION 219 // Compress text message string.
  88. #define IDS_UNCOMPRESS_CONFIRMATION 220 // Uncompress text message string.
  89. #define IDS_COMPRESS_ALSO 221 // "Also compress sub-folders." message.
  90. #define IDS_UNCOMPRESS_ALSO 222 // "Also uncompress sub-folders." message.
  91. #define IDS_COMPRESS_ACTION 223 // "This action compresses..."
  92. #define IDS_UNCOMPRESS_ACTION 224
  93. #define IDS_APP_NAME 225 // "Explorer"
  94. //
  95. // Byte count display fmt strings.
  96. //
  97. #define IDS_BYTECNT_FMT 226 // "bytes %1".
  98. #define IDS_UNCOMPRESS_DISKFULL 227
  99. #endif // ifdef WINNT
  100. #endif // ifdef __SHCOMPUI_RESIDS_H
  101.