Louis Lenders : gameux: Improve stub for GameExplorerImpl_VerifyAccess.

Alexandre Julliard julliard at winehq.org
Tue Oct 12 11:26:58 CDT 2010


Module: wine
Branch: master
Commit: 75f0573964c8d894d99be2909a1728bfc7f671a8
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=75f0573964c8d894d99be2909a1728bfc7f671a8

Author: Louis Lenders <xerox_xerox2000 at yahoo.co.uk>
Date:   Mon Oct 11 22:11:26 2010 +0200

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 =




More information about the wine-cvs mailing list