Commit 85055298 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msxml3: Added partial XMLView IPersistMoniker_Load implementation.

parent 55d34f47
......@@ -1996,9 +1996,8 @@ static HRESULT domdoc_onDataAvailable(void *obj, char *ptr, DWORD len)
return S_OK;
}
HRESULT domdoc_load_moniker(IXMLDOMDocument3 *iface, IMoniker *mon)
static HRESULT domdoc_load_moniker(domdoc *This, IMoniker *mon)
{
domdoc *This = impl_from_IXMLDOMDocument3(iface);
bsc_t *bsc;
HRESULT hr;
......@@ -2151,7 +2150,7 @@ static HRESULT WINAPI domdoc_load(
hr = create_moniker_from_url( filename, &mon);
if ( SUCCEEDED(hr) )
{
hr = domdoc_load_moniker( iface, mon );
hr = domdoc_load_moniker( This, mon );
IMoniker_Release(mon);
}
......
......@@ -490,7 +490,6 @@ typedef struct bsc_t bsc_t;
HRESULT create_moniker_from_url(LPCWSTR, IMoniker**) DECLSPEC_HIDDEN;
HRESULT bind_url(IMoniker*, HRESULT (*onDataAvailable)(void*,char*,DWORD), void*, bsc_t**) DECLSPEC_HIDDEN;
HRESULT detach_bsc(bsc_t*) DECLSPEC_HIDDEN;
HRESULT domdoc_load_moniker(IXMLDOMDocument3*, IMoniker*) DECLSPEC_HIDDEN;
const char *debugstr_variant(const VARIANT*) DECLSPEC_HIDDEN;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment