ole32: Add stub implementations of CoGetActivationState and CoGetCallState.

Dmitry Timoshkov dmitry at baikal.ru
Mon Aug 3 04:46:42 CDT 2015


Hans Leidekker <hans at 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.



More information about the wine-devel mailing list