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.

85 lines
2.9 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 2000.
  5. //
  6. // File: U H R E S . H
  7. //
  8. // Contents: Master resource header for upnphost.dll
  9. //
  10. // Notes:
  11. //
  12. // Author: mbend 8 Aug 2000
  13. //
  14. //----------------------------------------------------------------------------
  15. #pragma once
  16. //+---------------------------------------------------------------------------
  17. // Strings resources
  18. //
  19. #define IDS_EMPTY_NODE_NOT_PRESENT 200
  20. #define IDS_NON_EMPTY_NODE_NOT_PRESENT 201
  21. #define IDS_SERVICE_MISSING 202
  22. #define IDS_DUPLICATES_NOT_ALLOWED 203
  23. #define IDS_ROOT_DEVICE_MISSING 204
  24. #define IDS_INVALID_XML 205
  25. #define IDS_INVALID_ICON 206
  26. #define IDS_INVALID_ROOT_NAMESPACE 207
  27. #define IDS_SUFFIX_TOO_LONG 208
  28. #define IDS_URLBASE_PRESENT 209
  29. #define IDS_ELEMENT_VALUE_TOO_LONG 210
  30. #define IDS_ICON_MISSING 211
  31. #define IDS_DEVICE_MISSING 212
  32. //+---------------------------------------------------------------------------
  33. // Reigstry resources
  34. //
  35. // Upnphost application
  36. //
  37. #define IDR_UPNPHOST 100
  38. #define IDR_DYNAMIC_CONTENT_SOURCE 101
  39. #define IDR_DESCRIPTION_MANAGER 102
  40. #define IDR_DEVICE_PERSISTENCE_MANAGER 103
  41. #define IDR_CONTAINER_MANAGER 104
  42. #define IDR_REGISTRAR 105
  43. #define IDR_AUTOMATION_PROXY 106
  44. #define IDR_EVENTING_MANAGER 107
  45. #define IDR_VALIDATION_MANAGER 109
  46. //
  47. // UDHHTTP resources
  48. //
  49. #define IDS_LINKTOPARENTDIR 5
  50. #define RESBASE_body 500
  51. // The offsets need to match the enum RESPONSESTATUS. These correspond to HTTP response codes.
  52. #define IDS_MOVED (RESBASE_body + 1)
  53. #define IDS_BADREQ (RESBASE_body + 3)
  54. #define IDS_UNAUTHORIZED (RESBASE_body + 4)
  55. #define IDS_FORBIDDEN (RESBASE_body + 5)
  56. #define IDS_NOTFOUND (RESBASE_body + 6)
  57. #define IDS_INTERNALERR (RESBASE_body + 7)
  58. #define IDS_NOTIMPLEM (RESBASE_body + 8)
  59. #define IDS_NOTSUPP (RESBASE_body + 9)
  60. // Misc Codes.
  61. #define IDS_SERVER_BUSY 30
  62. // Codes that are not part of HTTP, but are generated by the web server for log.
  63. #define IDS_HTTPD_STARTUP 50
  64. #define IDS_HTTPD_SHUTDOWN_START 51
  65. #define IDS_HTTPD_EXCEPTION 52
  66. #define IDS_HTTPD_FILT_EXCEPTION 53
  67. #define IDS_HTTPD_EXT_EXCEPTION 54
  68. #define IDS_HTTPD_NO_REGKEY 55
  69. #define IDS_HTTPD_DISABLED 56
  70. #define IDS_HTTPD_SHUTDOWN_COMPLETE 57
  71. #define IDS_HTTPD_NO_VROOTS 58