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.

113 lines
3.7 KiB

  1. #ifndef _RLSTRNGS_H_
  2. #define _RLSTRNGS_H_
  3. // String IDs
  4. #define IDS_ERR_REGISTER_CLASS 1
  5. #define IDS_ERR_CREATE_WINDOW 2
  6. #define IDS_ERR_NO_HELP 3
  7. #define IDS_ERR_NO_MEMORY 4
  8. #define IDS_NOT_IMPLEMENTED 5
  9. #define IDS_GENERALFAILURE 6
  10. #define IDS_MPJ 7
  11. #define IDS_RES_SRC 8
  12. #define IDS_RES_BLD 9
  13. #define IDS_TOK 10
  14. #define IDS_READONLY 11
  15. #define IDS_CLEAN 12
  16. #define IDS_DIRTY 13
  17. #define IDS_FILENOTFOUND 14
  18. #define IDS_FILESAVEERR 15
  19. #define IDS_RESOURCENAMES 15 // Incremented by res type # in rlstrngs.rc
  20. // 16-31 used for Resource Type names
  21. #define IDS_ERR_00 32
  22. #define IDS_ERR_01 33
  23. #define IDS_ERR_02 34
  24. #define IDS_ERR_03 35
  25. #define IDS_ERR_04 36
  26. #define IDS_ERR_05 37
  27. #define IDS_ERR_06 38
  28. #define IDS_ERR_07 39
  29. #define IDS_ERR_08 40
  30. #define IDS_ERR_09 41
  31. #define IDS_ERR_10 42
  32. #define IDS_ERR_11 43
  33. #define IDS_ERR_12 44
  34. #define IDS_ERR_13 45
  35. #define IDS_ERR_14 46
  36. #define IDS_ERR_15 47
  37. #define IDS_ERR_16 48
  38. #define IDS_ERR_17 49
  39. #define IDS_ERR_18 50
  40. #define IDS_ERR_19 51
  41. #define IDS_ERR_20 52
  42. #define IDS_ERR_21 53
  43. #define IDS_ERR_22 54
  44. #define IDS_ERR_23 55
  45. #define IDS_ERR_24 56
  46. #define IDS_ERR_25 57
  47. #define IDS_ERR_26 58
  48. #define IDS_ERR_27 59
  49. #define IDS_ERR_28 60
  50. #define IDS_RLE_APP_NAME 64
  51. #define IDS_RLQ_APP_NAME 65
  52. #define IDS_RLA_APP_NAME 66
  53. #define IDS_ERR_NO_GLOSSARY 70
  54. #define IDS_ERR_NO_TOKEN 71
  55. #define IDS_ERR_TMPFILE 72
  56. #define IDS_RDF 80
  57. #define IDS_MTK 81
  58. #define IDS_GLOSS 86
  59. #define IDS_RDFSPEC 87
  60. #define IDS_PRJSPEC 88
  61. #define IDS_RESSPEC 89
  62. #define IDS_EXESPEC 90
  63. #define IDS_TOKSPEC 91
  64. #define IDS_MTKSPEC 92
  65. #define IDS_MPJSPEC 93
  66. #define IDS_DLLSPEC 94
  67. #define IDS_CPLSPEC 95
  68. #define IDS_GLOSSSPEC 96
  69. #define IDS_MPJERR 112
  70. #define IDS_MPJOUTOFDATE 113
  71. #define IDS_UPDATETOK 114
  72. #define IDS_REBUILD_TOKENS 115
  73. #define IDS_TOKEN_FOUND 116
  74. #define IDS_TOKEN_NOT_FOUND 117
  75. #define IDS_FIND_TOKEN 118
  76. #define IDS_OPENTITLE 119
  77. #define IDS_SAVETITLE 120
  78. #define IDS_ADDGLOSS 121
  79. #define IDS_RLE_CANTSAVEASEXE 122
  80. #define IDS_SAVECHANGES 123
  81. #define IDS_NOCHANGESYET 124
  82. #define IDS_CHANGED 125
  83. #define IDS_UNCHANGED 126
  84. #define IDS_NEW 127
  85. #define IDS_DRAGMULTIFILE 129
  86. #define IDS_CANTSAVEASRES 130
  87. #define IDS_RLQ_CANTSAVEASEXE 131
  88. #define IDS_RLQ_CANTSAVEASRES 132
  89. // 3100-3109 are reserved by RLQuikEd and RLRdit for resource editing tools.
  90. // A resource is given a menu item that passes this value for it's
  91. // command parameter. A corresponding string must exist in the string
  92. // table indicating the name of the editer to be invoked.
  93. //
  94. // When the user selects the menu item, it generates the appropriate command.
  95. // When RLQuikEd recieves a command in the IDM_FIRST_EDIT and IDM_LAST_EDIT range
  96. // it saves all the tokens and builds a temporary resource file.
  97. // RLQuikEd then retrieves the name of the editer from the string table and
  98. // performs a WinExec command on the temporary resource file.
  99. // When control is returned to RLQuikEd (the user closes the resource editor)
  100. // the token file is rebuilt from the edited resource file, the temporary
  101. // resource file is deleted, and the tokens are loaded back into the system.
  102. #define IDM_FIRST_EDIT 3100
  103. #define IDM_LAST_EDIT 3109
  104. #endif //_RLSTRNGS_H_
  105.