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.

135 lines
3.8 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1998 - 2001
  5. //
  6. // File : strdefs.h
  7. //
  8. // Contents :
  9. //
  10. // Notes :
  11. //
  12. // Author : Raghu Gatta (rgatta) 10 May 2001
  13. //
  14. //----------------------------------------------------------------------------
  15. #ifndef __STRDEFS_H__
  16. #define __STRDEFS_H__
  17. // The string table entries that are identified here are arranged
  18. // in a hierachy as follows
  19. // common hlp messages
  20. // command usage messages per protocol
  21. // show command usage
  22. // add command usage
  23. // delete command usage
  24. // set command usage
  25. // Output messages
  26. // Bridge messages
  27. // Miscellaneous messages
  28. // Strings
  29. // Protocol types
  30. // Miscellaneous strings
  31. // Error Messages
  32. // Bridge error messages
  33. #define MSG_NULL 1000
  34. // commmon hlp messages
  35. #define HLP_HELP 2100
  36. #define HLP_HELP_EX 2101
  37. #define HLP_HELP1 HLP_HELP
  38. #define HLP_HELP1_EX HLP_HELP_EX
  39. #define HLP_HELP2 HLP_HELP
  40. #define HLP_HELP2_EX HLP_HELP_EX
  41. #define HLP_INSTALL 2110
  42. #define HLP_INSTALL_EX 2111
  43. #define HLP_UNINSTALL 2112
  44. #define HLP_UNINSTALL_EX 2113
  45. #define HLP_DUMP 2120
  46. #define HLP_DUMP_EX 2121
  47. #define HLP_GROUP_SET 2150
  48. #define HLP_GROUP_SHOW 2151
  49. // BRIDGE
  50. // bridge install/uninstall
  51. #define HLP_BRIDGE_INSTALL 5000
  52. #define HLP_BRIDGE_INSTALL_EX 5001
  53. #define HLP_BRIDGE_UNINSTALL 5002
  54. #define HLP_BRIDGE_UNINSTALL_EX 5003
  55. #define HLP_BRIDGE_USE_GUI 5004
  56. // bridge dump
  57. #define DMP_BRIDGE_HEADER 5010
  58. #define DMP_BRIDGE_FOOTER 5011
  59. // bridge set hlp
  60. #define HLP_BRIDGE_SET_ADAPTER 5110
  61. #define HLP_BRIDGE_SET_ADAPTER_EX 5111
  62. // bridge show hlp
  63. #define HLP_BRIDGE_SHOW_ADAPTER 5210
  64. #define HLP_BRIDGE_SHOW_ADAPTER_EX 5211
  65. // Output messages
  66. // Bridge messages
  67. #define MSG_BRIDGE_GLOBAL_INFO 20501
  68. #define MSG_BRIDGE_ADAPTER_INFO_HDR 20551
  69. #define MSG_BRIDGE_ADAPTER_INFO 20552
  70. #define MSG_BRIDGE_FLAGS 20553
  71. // Miscellaneous messages
  72. #define MSG_OK 30001
  73. #define MSG_NO_HELPER 30002
  74. #define MSG_NO_HELPERS 30003
  75. #define MSG_CTRL_C_TO_QUIT 30004
  76. // Strings
  77. // Protocol types
  78. #define STRING_PROTO_OTHER 31001
  79. #define STRING_PROTO_BRIDGE 31002
  80. // Miscellaneous strings
  81. #define STRING_CREATED 32001
  82. #define STRING_DELETED 32002
  83. #define STRING_ENABLED 32003
  84. #define STRING_DISABLED 32004
  85. #define STRING_YES 32011
  86. #define STRING_NO 32012
  87. #define STRING_Y 32013
  88. #define STRING_N 32014
  89. #define STRING_UNKNOWN 32100
  90. #define TABLE_SEPARATOR 32200
  91. // Error messages
  92. // Bridge error messages
  93. #define MSG_BRIDGE_PRESENT 40100
  94. #define MSG_BRIDGE_NOT_PRESENT 40101
  95. // Miscellaneous messages
  96. #define EMSG_BAD_OPTION_VALUE 50100
  97. #endif