[Bug 35017] Rollercoaster Tycoon 3, steam version, no music

wine-bugs at winehq.org wine-bugs at winehq.org
Thu Jan 22 06:13:41 CST 2015


https://bugs.winehq.org/show_bug.cgi?id=35017

--- Comment #8 from lol at suncraft-server.de ---
I located this Method in the sourcecode:
dlls/devenum/mediacatenum.c:static HRESULT WINAPI
DEVENUM_IMediaCatMoniker_IsEqual(IMoniker *iface, IMoniker *pmkOtherMoniker)

And according to this:
https://msdn.microsoft.com/en-us/library/windows/desktop/ms678408%28v=vs.85%29.aspx

It must be implemented to use the hash-function, which is not implemmented,
too.

static HRESULT WINAPI DEVENUM_IMediaCatMoniker_IsEqual(IMoniker *iface,
IMoniker *pmkOtherMoniker)
{
    FIXME("(%p)->(%p): stub\n", iface, pmkOtherMoniker);

    return E_NOTIMPL;
}

static HRESULT WINAPI DEVENUM_IMediaCatMoniker_Hash(IMoniker *iface, DWORD
*pdwHash)
{
    TRACE("(%p)->(%p)\n", iface, pdwHash);

    *pdwHash = 0;

    return S_OK;
}

Is there anyone, who can do this, becaus I have no Idea how to implement it.

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list