1234567891011121314151617181920212223242526272829303132 |
- //*****************************************************************************
- //
- // Microsoft Windows Media
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //
- // FileName: xmldom.h
- //
- // Abstract:
- //
- //*****************************************************************************
- #pragma once
- //+-------------------------------------------------------------------------
- //
- // Microsoft Windows Media Technologies
- // Copyright (C) Microsoft Corporation
- //
- // File: XMLDom.h
- //
- // Contents:
- //
- //--------------------------------------------------------------------------
- //
- // This file is needed because we need to import "xmldom.idl" in several
- // of our idl files. Thus the .h files generated by MIDL includes "xmldom.h"
- // But xmldom.h does not exist in the platform SDK. However, msxml.h exists
- // in the SDK with all the definitions needed by xmldom.h. Thus, the work
- // around is to simply create this xmldom.h file that merely includes msxml.h
- //
- #include "msxml.h"
|