Re: ole32: Add stub implementations of CoGetActivationState and CoGetCallState.
Hans Leidekker <hans(a)codeweavers.com> wrote:
+/*********************************************************************** + * CoGetActivationState (ole32.@) + */ +HRESULT CoGetActivationState(GUID guid, DWORD unknown, DWORD *unknown2) +{ + FIXME("%s, %x, %p\n", debugstr_guid(&guid), unknown, unknown2); + return E_NOTIMPL; +} + +/*********************************************************************** + * CoGetCallState (ole32.@) + */ +HRESULT WINAPI CoGetCallState(int unknown, PULONG unknown2) +{ + FIXME("%d, %p\n", unknown, unknown2); + return E_NOTIMPL; +}
wct.h from PSDK has typedefs for COGETCALLSTATE and COGETACTIVATIONSTATE without WINAPI, so probably implementations shouldn't have them either. Same applies to .spec file entries. -- Dmitry.
participants (1)
-
Dmitry Timoshkov