xmldom.h 1015 B

1234567891011121314151617181920212223242526272829303132
  1. //*****************************************************************************
  2. //
  3. // Microsoft Windows Media
  4. // Copyright (C) Microsoft Corporation. All rights reserved.
  5. //
  6. // FileName: xmldom.h
  7. //
  8. // Abstract:
  9. //
  10. //*****************************************************************************
  11. #pragma once
  12. //+-------------------------------------------------------------------------
  13. //
  14. // Microsoft Windows Media Technologies
  15. // Copyright (C) Microsoft Corporation
  16. //
  17. // File: XMLDom.h
  18. //
  19. // Contents:
  20. //
  21. //--------------------------------------------------------------------------
  22. //
  23. // This file is needed because we need to import "xmldom.idl" in several
  24. // of our idl files. Thus the .h files generated by MIDL includes "xmldom.h"
  25. // But xmldom.h does not exist in the platform SDK. However, msxml.h exists
  26. // in the SDK with all the definitions needed by xmldom.h. Thus, the work
  27. // around is to simply create this xmldom.h file that merely includes msxml.h
  28. //
  29. #include "msxml.h"