https://bugs.winehq.org/show_bug.cgi?id=35017
--- Comment #8 from lol@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%...
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.