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.

166 lines
5.5 KiB

  1. #include "strdefs.h"
  2. //
  3. // Be sure to terminate your strings with a newline.
  4. //
  5. STRINGTABLE
  6. {
  7. //
  8. // Help strings.
  9. //
  10. HLP_HELP, "Displays help.\n"
  11. HLP_HELP_EX, "\
  12. \nUsage: %1!s!\
  13. \n Displays help.\n"
  14. HLP_INSTALL, "Installs the component corresponding to the current context.\n"
  15. HLP_INSTALL_EX, "\
  16. \nUsage: %1!s!\
  17. \n Not supported.\
  18. \n Please go to the Network Connections folder to install.\n"
  19. HLP_UNINSTALL, "Removes the component corresponding to the current context.\n"
  20. HLP_UNINSTALL_EX, "\
  21. \nUsage: %1!s!\
  22. \n Not supported.\
  23. \n Please go to the Network Connections folder to uninstall.\n"
  24. HLP_DUMP, "Outputs a configuration script.\n"
  25. HLP_DUMP_EX, "\
  26. \nUsage: %1!s! \
  27. \n Dumps the configuration for the current context and subcontexts.\n\
  28. \n To save the dumped configuration, redirect the output to a file.\n"
  29. HLP_GROUP_SET, "Sets configuration information.\n"
  30. HLP_GROUP_SHOW, "Displays information.\n"
  31. HLP_BRIDGE_INSTALL, "Installs the bridge on the current machine.\n"
  32. HLP_BRIDGE_INSTALL_EX, "\
  33. \nUsage: %1!s!\
  34. \n Installs the bridge on the current machine.\n"
  35. HLP_BRIDGE_UNINSTALL, "Removes the bridge from the current machine.\n"
  36. HLP_BRIDGE_UNINSTALL_EX, "\
  37. \nUsage: %1!s!\
  38. \n Removes the bridge from the current machine.\n"
  39. HLP_BRIDGE_USE_GUI, "\nNot supported.\nPlease go to the Network Connections folder to %1!s!.\n"
  40. DMP_BRIDGE_HEADER, "\
  41. \n# ------------------------------------\
  42. \n# Bridge configuration (not supported)\
  43. \n# ------------------------------------\n"
  44. DMP_BRIDGE_FOOTER, "\
  45. \n# ------------------------------------\
  46. \n# End of Bridge configuration\
  47. \n# ------------------------------------\n"
  48. HLP_BRIDGE_SET_ADAPTER, "\
  49. Modifies the bridge configuration for a specified adapter.\n"
  50. HLP_BRIDGE_SET_ADAPTER_EX, "\
  51. \nUsage: %1!s! [id=]<integer> [[forcecompatmode=]enable|disable]\
  52. \n \
  53. \nParameters:\
  54. \n Tag Value\
  55. \n id - The ID of the adapter which you want configured.\
  56. \n Use the ""show adapter"" command to obtain ID listing.\
  57. \n forcecompatmode - One of the following values:\
  58. \n enable : Enable Layer3 mode.\
  59. \n disable: Disable Layer3 mode.\
  60. \n \
  61. \nRemarks: Modifies bridge configuration for a specified adapter.\
  62. \n This should only be done if network connectivity is not\
  63. \n working as expected on the specified adapter.\
  64. \n \
  65. \nExamples:\
  66. \n \
  67. \n %1!s! ""2"" forcecompatmode=enable\
  68. \n \
  69. \n Modifies the bridge configuration for adapter ""2"" by setting it\
  70. \n in Layer3 mode.\
  71. \n"
  72. HLP_BRIDGE_SHOW_ADAPTER, "\
  73. Shows the adapters configured as a single bridge.\n"
  74. HLP_BRIDGE_SHOW_ADAPTER_EX, "\
  75. \nUsage: %1!s! [[id=]integer]\
  76. \n \
  77. \nParameters:\
  78. \n Tag Value\
  79. \n id - The ID of the adapter whose configuration you want\
  80. \n to view.\
  81. \n \
  82. \nRemarks: Shows information about adapters pertaining to the bridge.\
  83. \n \
  84. \nExamples:\
  85. \n \
  86. \n %1!s!\
  87. \n \
  88. \n Lists all adapters (with IDs) which form part of the bridge and\
  89. \n their settings and flags.\
  90. \n"
  91. MSG_BRIDGE_GLOBAL_INFO, "None"
  92. MSG_BRIDGE_ADAPTER_INFO_HDR, "\
  93. \n----------------------------------------------------------------------\
  94. \n ID AdapterFriendlyName ForceCompatibilityMode\
  95. \n----------------------------------------------------------------------\
  96. \n"
  97. MSG_BRIDGE_ADAPTER_INFO, "None"
  98. MSG_BRIDGE_FLAGS, "None"
  99. MSG_OK, "Ok."
  100. MSG_NO_HELPER, "No Helper was found"
  101. MSG_NO_HELPERS, "No Helpers were found"
  102. MSG_CTRL_C_TO_QUIT, "Control+C to Quit"
  103. STRING_PROTO_OTHER, ""
  104. STRING_PROTO_BRIDGE, ""
  105. STRING_CREATED, "created"
  106. STRING_DELETED, "delete"
  107. STRING_ENABLED, "enabled"
  108. STRING_DISABLED, "disabled"
  109. STRING_YES, "yes"
  110. STRING_NO, "no"
  111. STRING_Y, "y"
  112. STRING_N, "n"
  113. STRING_UNKNOWN, "unknown"
  114. TABLE_SEPARATOR, "\
  115. ----------------------------------------------------------------------\n"
  116. MSG_BRIDGE_PRESENT, "Bridge is present"
  117. MSG_BRIDGE_NOT_PRESENT, "Bridge is not present"
  118. EMSG_BAD_OPTION_VALUE, "%1!s! is not an acceptable value for %2!s!.\n"
  119. }
  120. #include <windows.h>
  121. #include <ntverp.h>
  122. #define VER_FILETYPE VFT_DLL
  123. #define VER_FILESUBTYPE VFT2_UNKNOWN
  124. #define VER_FILEDESCRIPTION_STR "Home Networking Monitor DLL"
  125. #define VER_INTERNALNAME_STR "hnetmon.dll"
  126. #define VER_ORIGINALFILENAME_STR "hnetmon.dll"
  127. #include "common.ver"