msxml3: Add IXMLDOMDocument3 stub support.

This commit is contained in:
Nikolay Sivov 2010-08-30 01:31:49 +04:00 committed by Alexandre Julliard
parent 25bce451af
commit 62e521ad0d
25 changed files with 247 additions and 230 deletions

View File

@ -27,7 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -27,7 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "wininet.h"
#include "urlmon.h"
#include "winreg.h"

View File

@ -27,7 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -27,7 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -27,7 +27,7 @@
#include "winuser.h"
#include "winnls.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "wininet.h"
#include "urlmon.h"
#include "winreg.h"

View File

@ -27,7 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

File diff suppressed because it is too large Load Diff

View File

@ -27,7 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -28,7 +28,7 @@
#include "winuser.h"
#include "winnls.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -27,7 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -26,7 +26,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -30,7 +30,7 @@
#include "winuser.h"
#include "ole2.h"
#include "msxml.h"
#include "msxml2.h"
#include "msxml6.h"
#include "wine/unicode.h"
#include "wine/debug.h"

View File

@ -163,7 +163,7 @@ static inline IXMLDOMNode *IXMLDOMNode_from_impl(xmlnode *This)
extern void init_xmlnode(xmlnode*,xmlNodePtr,IUnknown*,dispex_static_data_t*);
extern void destroy_xmlnode(xmlnode*);
extern HRESULT DOMDocument_create_from_xmldoc(xmlDocPtr xmldoc, IXMLDOMDocument2 **document);
extern HRESULT DOMDocument_create_from_xmldoc(xmlDocPtr xmldoc, IXMLDOMDocument3 **document);
static inline BSTR bstr_from_xmlChar(const xmlChar *str)
{

View File

@ -29,7 +29,7 @@
#include "winuser.h"
#include "winnls.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"
@ -768,7 +768,7 @@ static HRESULT WINAPI xmlnode_get_ownerDocument(
TRACE("(%p)->(%p)\n", This, DOMDocument);
return DOMDocument_create_from_xmldoc(This->node->doc, (IXMLDOMDocument2**)DOMDocument);
return DOMDocument_create_from_xmldoc(This->node->doc, (IXMLDOMDocument3**)DOMDocument);
}
static HRESULT WINAPI xmlnode_cloneNode(

View File

@ -27,7 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -28,7 +28,7 @@
#include "winuser.h"
#include "winnls.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -30,7 +30,7 @@
#include "winerror.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -27,7 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -28,7 +28,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -36,7 +36,7 @@
#include "msxml.h"
#include "xmldom.h"
#include "xmldso.h"
#include "msxml2.h"
#include "msxml6.h"
/* undef the #define in msxml2 so that we can access the v.2 version
independent CLSID as well as the v.3 one. */

View File

@ -29,7 +29,7 @@
#include "winuser.h"
#include "winnls.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "wininet.h"
#include "urlmon.h"
#include "winreg.h"

View File

@ -27,7 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "wine/debug.h"

View File

@ -28,7 +28,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "msxml_private.h"

View File

@ -27,7 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "wininet.h"
#include "winreg.h"
#include "shlwapi.h"

View File

@ -27,7 +27,7 @@
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml2.h"
#include "msxml6.h"
#include "ocidl.h"
#include "wine/debug.h"