gameux: Improve stub for GameExplorerImpl_VerifyAccess.

This commit is contained in:
Louis Lenders 2010-10-11 22:11:26 +02:00 committed by Alexandre Julliard
parent d099af8c01
commit 75f0573964
1 changed files with 3 additions and 3 deletions

View File

@ -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 =