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.

52 lines
2.0 KiB

  1. #include <windows.h>
  2. #include <skeleton.h>
  3. #include <ntverp.h>
  4. //
  5. // Be sure to terminate your strings with a newline.
  6. //
  7. #define VER_FILETYPE VFT_DLL
  8. #define VER_FILESUBTYPE VFT2_UNKNOWN
  9. #define VER_FILEDESCRIPTION_STR "RPC Netshell Helper"
  10. #define VER_INTERNALNAME_STR "rpcnsh.dll"
  11. #define VER_ORIGINALFILENAME_STR "rpcnsh.dll"
  12. #include "common.ver"
  13. STRINGTABLE
  14. {
  15. //
  16. // Help strings.
  17. //
  18. HLP_ADD, "Create an Add list of subnets.\n"
  19. HLP_ADD_EX, "Usage: add [subnet] [subnet] ...\n\
  20. \tExamples:\n\
  21. \tadd 128.238.220 157.59.244.1\n"
  22. HLP_DELETE, "Create a Delete list of subnets.\n"
  23. HLP_DELETE_EX, "Usage: delete [subnet] [subnet] ...\n\
  24. \tExamples:\n\
  25. \tdelete 128.238.220 157.59.244.1\n"
  26. HLP_DUMP, "Displays the selective binding settings in the registry.\n"
  27. HLP_DUMP_EX, "Usage: dump\n"
  28. HLP_RESET, "Reset the selective binding settings to 'none' (listen on all interfaces).\n"
  29. HLP_RESET_EX, "Usage: reset\n"
  30. HLP_SHOW, "Show the selective binding state for each subnet on the system.\n"
  31. HLP_SHOW_EX, "Usage: show\n"
  32. ERRORMSG_ADD_1, "Must specify at least one subnet\n"
  33. ERRORMSG_ADD_2, "Subnets must be specified in dotted decimal notation. INVALID: %1!S!\n"
  34. ERRORMSG_OOM, "Out of memory\n"
  35. ERRORMSG_ACCESSDENIED, "Could not access the selective binding registry key for writing\n"
  36. ERRORMSG_INVALIDDATA, "The selective binding settings are corrupt \n"
  37. ERRORMSG_UNKNOWN, "Unknown error returned %1!u!\n"
  38. }