Added stub for CoSetState32.

This commit is contained in:
Uwe Bonnes 1998-10-18 14:34:20 +00:00 committed by Alexandre Julliard
parent 3a30013b1b
commit a0e4b2a0a0
2 changed files with 10 additions and 1 deletions

View File

@ -647,3 +647,12 @@ HRESULT WINAPI CoGetState16(LPDWORD state)
*state = 0; *state = 0;
return S_OK; return S_OK;
} }
/***********************************************************************
* CoSetState32 [COM32.42]
*/
HRESULT WINAPI CoSetState32(LPDWORD state)
{
FIXME(ole, "(%p),stub!\n", state);
*state = 0;
return S_OK;
}

View File

@ -42,7 +42,7 @@ type win32
39 stub CoReleaseMarshalData 39 stub CoReleaseMarshalData
40 stub CoRevokeClassObject 40 stub CoRevokeClassObject
41 stub CoRevokeMallocSpy 41 stub CoRevokeMallocSpy
42 stub CoSetState 42 stdcall CoSetState(ptr) CoSetState32
43 stdcall CoTaskMemAlloc(long) CoTaskMemAlloc 43 stdcall CoTaskMemAlloc(long) CoTaskMemAlloc
44 stdcall CoTaskMemFree(ptr) CoTaskMemFree 44 stdcall CoTaskMemFree(ptr) CoTaskMemFree
45 stub CoTaskMemRealloc 45 stub CoTaskMemRealloc