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.

39 lines
993 B

  1. /*
  2. * _ X M L L I B . H
  3. *
  4. * XML document processing
  5. *
  6. * Copyright 1986-1997 Microsoft Corporation, All Rights Reserved
  7. */
  8. #ifndef __XMLLIB_H_
  9. #define __XMLLIB_H_
  10. // Define _WINSOCKAPI_ to keep windows.h from including winsock.h,
  11. // whose declarations would be redefined in winsock2.h,
  12. // which is included by iisextp.h,
  13. // which we include below!
  14. //
  15. #define _WINSOCKAPI_
  16. #include <windows.h>
  17. #include <oledberr.h>
  18. #include <limits.h>
  19. #pragma warning(disable:4100) // unref formal parameter
  20. #pragma warning(disable:4200) // non-standard extension
  21. #pragma warning(disable:4201) // non-standard extension
  22. #pragma warning(disable:4710) // unexpanded c++ methods
  23. #include <ex\refcnt.h>
  24. #include <ex\nmspc.h>
  25. #include <ex\xml.h>
  26. #include <ex\xmldata.h>
  27. #include <ex\xprs.h>
  28. #include <ex\cnvt.h>
  29. #include <ex\atomcache.h>
  30. #include <ex\xemit.h>
  31. DEC_CONST WCHAR gc_wszNamespaceGuid[] = L"{xxxxxxxx-yyyy-zzzz-aaaa-bbbbbbbbbbbb}";
  32. #endif // __XMLLIB_H_