From 590b49e125c8d778fee74270557f0467370fe5c8 Mon Sep 17 00:00:00 2001 From: Louis Lenders Date: Mon, 11 Oct 2010 22:11:26 +0200 Subject: gameux: Improve stub for GameExplorerImpl_VerifyAccess --- dlls/gameux/gameexplorer.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/gameux/gameexplorer.c b/dlls/gameux/gameexplorer.c index 744ae8a..1715ad9 100644 --- a/dlls/gameux/gameexplorer.c +++ b/dlls/gameux/gameexplorer.c @@ -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 = -- 1.7.0.4