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.

94 lines
4.9 KiB

  1. //
  2. // Copyright (C) 2000, Microsoft Corporation.
  3. //
  4. // All rights reserved.
  5. //
  6. #include <windows.h>
  7. #include <ntverp.h>
  8. #define VER_FILETYPE VFT_DLL
  9. #define VER_FILESUBTYPE VFT2_UNKNOWN
  10. #define VER_FILEDESCRIPTION_STR "WMI ICMP Echo Provider"
  11. #define VER_INTERNALNAME_STR "wmipicmp.dll"
  12. #define VER_ORIGINALFILENAME_STR "wmipicmp.dll"
  13. #include "common.ver"
  14. #include "res_str.h"
  15. /////////////////////////////////////////////////////////////////////////////
  16. //
  17. // String Table
  18. //
  19. STRINGTABLE DISCARDABLE
  20. BEGIN
  21. IDS_CALLBACK_PREMATURE "Callback object deleted prematurely."
  22. IDS_IMPERSONATE_RECEIVE "Failed to impersonate client when receiving response."
  23. IDS_ICMPCREATEFILE_FAIL "Failed to send echo, IcmpCreateFile failed."
  24. IDS_RR_MAX "Send option setting failure, exceeded max option size - RecordRoute."
  25. IDS_RR_MAX_INDEX "Send option setting failure, exceeded max option index - RecordRoute."
  26. IDS_TS_MAX "Send option setting failure, exceeded max option size - TimestampRoute."
  27. IDS_TS_MAX_INDEX "Send option setting failure, exceeded max option index - TimestampRoute."
  28. IDS_SR_MAX "Send option setting failure, exceeded max option size - SourceRoute."
  29. IDS_SR_MAX_INDEX "Send option setting failure, exceeded max option index - SourceRoute."
  30. IDS_SR_PARSE "Send option setting failure, failed to parse SourceRoute."
  31. IDS_ICMPSENDECHO2 "Failed to send echo, IcmpSendEcho2 failed."
  32. IDS_IMPERSONATE_SEND "Failed to impersonate client when sending echo."
  33. IDS_DUP_THRDTOKEN "Failed to duplicate client thread token."
  34. IDS_ICMPECHO "Failed to send ICMP Echo."
  35. IDS_CLASS_DEFN "Class definition not found."
  36. END
  37. STRINGTABLE DISCARDABLE
  38. BEGIN
  39. IDS_INVALID_CLASS "Ping Provider does not support this class."
  40. IDS_OBJ_PATH "Unable to parse object path."
  41. IDS_OBJ_PATH_KEYS "Object path has incorrect number of keys."
  42. IDS_OBJ_PATH_DUP_KEYS "Same key name specified multiply in object path."
  43. IDS_OBJ_PATH_ADDR "Address given in object path was found to be invalid."
  44. IDS_ADDR_TYPE "Address given in object path has invalid type."
  45. IDS_TO_TYPE "Timeout given in object path has invalid type."
  46. IDS_TTL_TYPE "TimeToLive given in object path has invalid type."
  47. IDS_BUFF_TYPE "BufferSize given in object path has invalid type."
  48. IDS_NOFRAG_TYPE "NoFragmentation given in object path has invalid type."
  49. IDS_TOS_TYPE "TypeofService given in object path has invalid type."
  50. IDS_RR_TYPE "RecordRoute given in object path has invalid type."
  51. IDS_TS_TYPE "TimestampRoute given in object path has invalid type."
  52. IDS_SRT_TYPE "SourceRouteType given in object path has invalid type."
  53. IDS_SR_TYPE "SourceRoute given in object path has invalid type."
  54. IDS_RA_TYPE "ResolveAddressNames given in object path has invalid type."
  55. END
  56. STRINGTABLE DISCARDABLE
  57. BEGIN
  58. IDS_UNK_PROP "Unknown property in object path."
  59. IDS_UNK_KEY "Unknown key property name specified in object path."
  60. IDS_NO_KEYS "Failed to get all key values."
  61. IDS_DECODE_GET "Decoding response failed."
  62. IDS_QUERY_ADDR "Address must be uniquely specified per query partition."
  63. IDS_QUERY_ADDR_INVALID "Failed to resolve hostname specified, network failure."
  64. IDS_QUERY_TO "Timeout must be uniquely specified per query partition."
  65. IDS_QUERY_TTL "TimeToLive must be uniquely specified per query partition."
  66. IDS_QUERY_BUF "BufferSize must be uniquely specified per query partition."
  67. IDS_QUERY_NOFRAG "NoFragmentation must be uniquely specified per query partition."
  68. IDS_QUERY_TOS "TypeOfService must be uniquely specified per query partition."
  69. IDS_QUERY_RR "RecordRoute must be uniquely specified per query partition."
  70. IDS_QUERY_TS "TimestampRoute must be uniquely specified per query partition."
  71. IDS_QUERY_SRT "SourceRouteType must be uniquely specified per query partition."
  72. IDS_QUERY_SR "SourceRoute must be uniquely specified per query partition."
  73. IDS_QUERY_RA "ResolveAddressNames must be uniquely specified per query partition."
  74. END
  75. STRINGTABLE DISCARDABLE
  76. BEGIN
  77. IDS_QUERY_BROAD "The provider failed to analyze the query into usable partitions - too broad."
  78. IDS_QUERY_NARROW "The provider failed to analyze the query into usable partitions - too narrow."
  79. IDS_QUERY_UNUSABLE "The provider failed to analyze the query into usable partitions."
  80. IDS_QUERY_ANALYZE "The provider failed to analyze the query."
  81. IDS_QUERY_PARSE "The provider failed to parse the query."
  82. IDS_DECODE_QUERY "Decoding response failed."
  83. END