ole32: Implemented some proxy/stubs methods.
This commit is contained in:
parent
0bed1bfd93
commit
10c878a451
|
@ -3011,15 +3011,15 @@ HRESULT CALLBACK IOleInPlaceActiveObject_TranslateAccelerator_Proxy(
|
||||||
IOleInPlaceActiveObject* This,
|
IOleInPlaceActiveObject* This,
|
||||||
LPMSG lpmsg)
|
LPMSG lpmsg)
|
||||||
{
|
{
|
||||||
FIXME(":stub\n");
|
TRACE("(%p %p)\n", This, lpmsg);
|
||||||
return E_NOTIMPL;
|
return IOleInPlaceActiveObject_RemoteTranslateAccelerator_Proxy(This);
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT __RPC_STUB IOleInPlaceActiveObject_TranslateAccelerator_Stub(
|
HRESULT __RPC_STUB IOleInPlaceActiveObject_TranslateAccelerator_Stub(
|
||||||
IOleInPlaceActiveObject* This)
|
IOleInPlaceActiveObject* This)
|
||||||
{
|
{
|
||||||
FIXME(":stub\n");
|
TRACE("(%p)\n", This);
|
||||||
return E_NOTIMPL;
|
return S_FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT CALLBACK IOleInPlaceActiveObject_ResizeBorder_Proxy(
|
HRESULT CALLBACK IOleInPlaceActiveObject_ResizeBorder_Proxy(
|
||||||
|
@ -3049,8 +3049,8 @@ HRESULT CALLBACK IOleCache2_UpdateCache_Proxy(
|
||||||
DWORD grfUpdf,
|
DWORD grfUpdf,
|
||||||
LPVOID pReserved)
|
LPVOID pReserved)
|
||||||
{
|
{
|
||||||
FIXME(":stub\n");
|
TRACE("(%p, %p, 0x%08x, %p)\n", This, pDataObject, grfUpdf, pReserved);
|
||||||
return E_NOTIMPL;
|
return IOleCache2_RemoteUpdateCache_Proxy(This, pDataObject, grfUpdf, (LONG_PTR)pReserved);
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT __RPC_STUB IOleCache2_UpdateCache_Stub(
|
HRESULT __RPC_STUB IOleCache2_UpdateCache_Stub(
|
||||||
|
@ -3059,8 +3059,8 @@ HRESULT __RPC_STUB IOleCache2_UpdateCache_Stub(
|
||||||
DWORD grfUpdf,
|
DWORD grfUpdf,
|
||||||
LONG_PTR pReserved)
|
LONG_PTR pReserved)
|
||||||
{
|
{
|
||||||
FIXME(":stub\n");
|
TRACE("(%p, %p, 0x%08x, %li)\n", This, pDataObject, grfUpdf, pReserved);
|
||||||
return E_NOTIMPL;
|
return IOleCache2_UpdateCache(This, pDataObject, grfUpdf, (void*)pReserved);
|
||||||
}
|
}
|
||||||
|
|
||||||
HRESULT CALLBACK IEnumOLEVERB_Next_Proxy(
|
HRESULT CALLBACK IEnumOLEVERB_Next_Proxy(
|
||||||
|
|
Loading…
Reference in New Issue