Commit 75f05739 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

gameux: Improve stub for GameExplorerImpl_VerifyAccess.

parent d099af8c
......@@ -875,9 +875,9 @@ static HRESULT WINAPI GameExplorerImpl_VerifyAccess(
{
GameExplorerImpl *This = impl_from_IGameExplorer(iface);
TRACE("(%p, %s, %p)\n", This, debugstr_w(sGDFBinaryPath), pHasAccess);
FIXME("stub\n");
return E_NOTIMPL;
FIXME("(%p, %s, %p)\n", This, debugstr_w(sGDFBinaryPath), pHasAccess);
*pHasAccess = TRUE;
return S_OK;
}
static const struct IGameExplorerVtbl GameExplorerImplVtbl =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment