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
1.4 KiB

  1. /*
  2. * D A V . R H
  3. *
  4. * File system based implementation of DAV resource header
  5. *
  6. * Copyright 1986-1997 Microsoft Corporation, All Rights Reserved
  7. */
  8. #ifndef _DAV_RH_
  9. #define _DAV_RH_
  10. // String ID's ---------------------------------------------------------------
  11. //
  12. // NOTE:
  13. //
  14. // 0-99 are reserved for DEBUG resource dumping
  15. // 100-599 are reserved for HTTP response codes
  16. //
  17. // PUT completion status -----------------------------------------------------
  18. //
  19. #define IDS_WRITTEN 1000
  20. #define IDS_CREATED 1001
  21. // Failure messages ----------------------------------------------------------
  22. //
  23. #define IDS_FAIL_CREATE_DIR 1103
  24. #define IDS_FAIL_PROP_NO_EXIST 1104
  25. #define IDS_FAIL_PROP_NO_ACCSS 1105
  26. // Special Bad Request clarifications
  27. //
  28. #define IDS_BR_LOCKTOKEN_NOT_ALLOWED 1106
  29. #define IDS_BR_LOCKTOKEN_SYNTAX 1107
  30. #define IDS_BR_LOCKTOKEN_MISSING 1108
  31. #define IDS_BR_LOCKTOKEN_INVALID 1109
  32. #define IDS_BR_LOCKINFO_SYNTAX 1110
  33. #define IDS_BR_LOCK_BODY_SYNTAX 1110 // Reusing the same string id ON PURPOSE!
  34. #define IDS_BR_TIMEOUT_SYNTAX 1111
  35. #define IDS_BR_LOCK_BODY_TYPE 1112
  36. #define IDS_BR_MULTIPLE_LOCKTOKENS 1113
  37. #define IDS_BR_NO_COLL_LOCK 1114
  38. // Extension name ------------------------------------------------------------
  39. //
  40. #define IDS_ExtensionName 2000
  41. // No Subject
  42. //
  43. #define IDS_NoSubject 2001
  44. #endif // _DAV_RH_