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.

32 lines
1.3 KiB

  1. // ========================================================================
  2. //
  3. // REPLPROPSHACK.H
  4. //
  5. // Extra bits for replication in DAVEX.
  6. //
  7. // ========================================================================
  8. #ifndef _REPLPROPSHACK_H_
  9. #define _REPLPROPSHACK_H_
  10. // Values for new XML nodes
  11. DEC_CONST WCHAR gc_wszReplNode[] = L"http://schemas.microsoft.com/repl/repl";
  12. DEC_CONST WCHAR gc_wszReplCollBlob[] = L"http://schemas.microsoft.com/repl/collblob";
  13. DEC_CONST WCHAR gc_wszReplResTagList[] = L"http://schemas.microsoft.com/repl/resourcetaglist";
  14. DEC_CONST WCHAR gc_wszReplResTagItem[] = L"http://schemas.microsoft.com/repl/resourcetag";
  15. // Names for new properties
  16. DEC_CONST WCHAR gc_wszReplChangeType[] = L"http://schemas.microsoft.com/repl/changetype";
  17. DEC_CONST WCHAR gc_wszReplUid[] = L"http://schemas.microsoft.com/repl/repl-uid";
  18. DEC_CONST WCHAR gc_wszReplContentTag[] = L"http://schemas.microsoft.com/repl/contenttag";
  19. DEC_CONST WCHAR gc_wszReplResourceTag[] = L"http://schemas.microsoft.com/repl/resourcetag";
  20. // New headers
  21. DEC_CONST CHAR gc_szResourceTag[] = "ResourceTag";
  22. DEC_CONST CHAR gc_szReplUID[] = "Repl-UID";
  23. // Namespace string used for namespace preloading by the XML emitter
  24. //
  25. DEC_CONST WCHAR gc_wszReplNameSpace[] = L"http://schemas.microsoft.com/repl/";
  26. #endif // !_REPLPROPSHACK_H_