mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
ole32: Added IMoniker::BindToStorage proxy/stub implementation.
This commit is contained in:
parent
62029ff586
commit
4eb769451e
1 changed files with 4 additions and 4 deletions
|
@ -2357,8 +2357,8 @@ HRESULT CALLBACK IMoniker_BindToStorage_Proxy(
|
|||
REFIID riid,
|
||||
void **ppvObj)
|
||||
{
|
||||
FIXME(":stub\n");
|
||||
return E_NOTIMPL;
|
||||
TRACE("(%p)->(%p %p %s %p)\n", This, pbc, pmkToLeft, debugstr_guid(riid), ppvObj);
|
||||
return IMoniker_RemoteBindToStorage_Proxy(This, pbc, pmkToLeft, riid, (IUnknown**)ppvObj);
|
||||
}
|
||||
|
||||
HRESULT __RPC_STUB IMoniker_BindToStorage_Stub(
|
||||
|
@ -2368,8 +2368,8 @@ HRESULT __RPC_STUB IMoniker_BindToStorage_Stub(
|
|||
REFIID riid,
|
||||
IUnknown **ppvObj)
|
||||
{
|
||||
FIXME(":stub\n");
|
||||
return E_NOTIMPL;
|
||||
TRACE("(%p)->(%p %p %s %p)\n", This, pbc, pmkToLeft, debugstr_guid(riid), ppvObj);
|
||||
return IMoniker_BindToStorage(This, pbc, pmkToLeft, riid, (void**)ppvObj);
|
||||
}
|
||||
|
||||
HRESULT CALLBACK IEnumString_Next_Proxy(
|
||||
|
|
Loading…
Reference in a new issue