Retrieves an interface on an XMLDOMDocument6
Syntax
HRESULT WINAPI CreateAutoListParser (
REFIID riid,
PVOID* ppv
)
Parameters
- riid
- IID of the interface to retrieve
- ppv
- Pointer to a pointer that receives the interface pointer
Return Value
S_OK on success or a standard COM error code otherwise
Remarks
CreateAutoListParser is implemented as
HRESULT CreateAutoListParser(REFIID riid, PVOID* ppv) { return CoCreateInstance(CLSID_DOMDocument6, NULL, CLSCTX_INPROC_SERVER, riid, ppv); }This function is also known as _CreateAutoListParser@8.