Added stub for CoResumeClassObjects.
This commit is contained in:
parent
78e8410035
commit
32fe6bdc13
|
@ -1091,12 +1091,12 @@ static HRESULT WINAPI OLEClipbrd_IDataObject_GetData(
|
|||
* Declare "This" pointer
|
||||
*/
|
||||
ICOM_THIS(OLEClipbrd, iface);
|
||||
|
||||
TRACE("(%p,%p,%p)\n", iface, pformatetcIn, pmedium);
|
||||
|
||||
if ( !pformatetcIn || !pformatetcIn || !pmedium )
|
||||
if ( !pformatetcIn || !pmedium )
|
||||
return E_INVALIDARG;
|
||||
|
||||
TRACE("(%p, %p)\n", iface, pformatetcIn);
|
||||
|
||||
/*
|
||||
* If we have a data source placed on the clipboard (via OleSetClipboard)
|
||||
* simply delegate to the source object's QueryGetData
|
||||
|
@ -1238,6 +1238,7 @@ static HRESULT WINAPI OLEClipbrd_IDataObject_SetData(
|
|||
STGMEDIUM* pmedium,
|
||||
BOOL fRelease)
|
||||
{
|
||||
TRACE("\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
|
@ -1363,6 +1364,7 @@ static HRESULT WINAPI OLEClipbrd_IDataObject_DAdvise(
|
|||
IAdviseSink* pAdvSink,
|
||||
DWORD* pdwConnection)
|
||||
{
|
||||
TRACE("\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
|
@ -1377,6 +1379,7 @@ static HRESULT WINAPI OLEClipbrd_IDataObject_DUnadvise(
|
|||
IDataObject* iface,
|
||||
DWORD dwConnection)
|
||||
{
|
||||
TRACE("\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
|
@ -1391,6 +1394,7 @@ static HRESULT WINAPI OLEClipbrd_IDataObject_EnumDAdvise(
|
|||
IDataObject* iface,
|
||||
IEnumSTATDATA** ppenumAdvise)
|
||||
{
|
||||
TRACE("\n");
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
|
|
|
@ -1376,6 +1376,17 @@ HRESULT WINAPI CoGetClassObject(REFCLSID rclsid, DWORD dwClsContext,
|
|||
return hres;
|
||||
}
|
||||
|
||||
/****************************************************************************************
|
||||
* CoResumeClassObjects
|
||||
*
|
||||
* Resumes classobjects registered with REGCLS suspended
|
||||
*/
|
||||
HRESULT WINAPI CoResumeClassObjects(void)
|
||||
{
|
||||
FIXME("\n");
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
/****************************************************************************************
|
||||
* GetClassFile
|
||||
*
|
||||
|
|
|
@ -173,7 +173,7 @@ type win32
|
|||
170 stub CoGetInstanceFromIStorage # stdcall (ptr ptr ptr long ptr long ptr) return 0,ERR_NOTIMPLEMENTED
|
||||
171 stub CoRegisterPSClsid # stdcall (ptr ptr) return 0,ERR_NOTIMPLEMENTED
|
||||
172 stub CoReleaseServerProcess # stdcall () return 0,ERR_NOTIMPLEMENTED
|
||||
173 stub CoResumeClassObjects # stdcall () return 0,ERR_NOTIMPLEMENTED
|
||||
173 stdcall CoResumeClassObjects() CoResumeClassObjects
|
||||
174 stub CoRevertToSelf # stdcall () return 0,ERR_NOTIMPLEMENTED
|
||||
175 stub CoSetProxyBlanket # stdcall (ptr long long wstr long long ptr long) return 0,ERR_NOTIMPLEMENTED
|
||||
176 stub CoSuspendClassObjects # stdcall () return 0,ERR_NOTIMPLEMENTED
|
||||
|
|
Loading…
Reference in New Issue