#include "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "msxml.h"
#include "xmldom.h"
#include "msxml2.h"
#include "wine/debug.h"
#include "msxml_private.h"
Go to the source code of this file.
Data Structures |
| struct | xmlcf |
Defines |
| #define | COBJMACROS |
Typedefs |
| typedef HRESULT(* | fnCreateInstance )(IUnknown *pUnkOuter, LPVOID *ppObj) |
Functions |
| | WINE_DEFAULT_DEBUG_CHANNEL (msxml) |
| static xmlcf * | impl_from_IClassFactory (IClassFactory *iface) |
| static HRESULT WINAPI | xmlcf_QueryInterface (IClassFactory *iface, REFIID riid, LPVOID *ppobj) |
| static ULONG WINAPI | xmlcf_AddRef (IClassFactory *iface) |
| static ULONG WINAPI | xmlcf_Release (IClassFactory *iface) |
| static HRESULT WINAPI | xmlcf_CreateInstance (IClassFactory *iface, LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj) |
| static HRESULT WINAPI | xmlcf_LockServer (IClassFactory *iface, BOOL dolock) |
| HRESULT WINAPI | DllGetClassObject (REFCLSID rclsid, REFIID iid, LPVOID *ppv) |
Variables |
| static struct IClassFactoryVtbl | xmlcf_vtbl |
| static xmlcf | domdoccf = { &xmlcf_vtbl, DOMDocument_create } |
| static xmlcf | schemacf = { &xmlcf_vtbl, SchemaCache_create } |
| static xmlcf | xmldoccf = { &xmlcf_vtbl, XMLDocument_create } |
| static xmlcf | saxreadcf = { &xmlcf_vtbl, SAXXMLReader_create } |
| static xmlcf | httpreqcf = { &xmlcf_vtbl, XMLHTTPRequest_create } |