Lei Zhang : ole32: Silence FIXME from CoGetContextToken stub.

Alexandre Julliard julliard at winehq.org
Tue Jul 22 09:35:39 CDT 2008


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

Author: Lei Zhang <thestig at google.com>
Date:   Mon Jul 21 11:55:48 2008 -0700

ole32: Silence FIXME from CoGetContextToken stub.

---

 dlls/ole32/compobj.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/ole32/compobj.c b/dlls/ole32/compobj.c
index 3df0421..64a99ec 100644
--- a/dlls/ole32/compobj.c
+++ b/dlls/ole32/compobj.c
@@ -3742,7 +3742,8 @@ HRESULT WINAPI CoGetObjectContext(REFIID riid, void **ppv)
  */
 HRESULT WINAPI CoGetContextToken( ULONG_PTR *token )
 {
-    FIXME( "stub\n" );
+    static int calls;
+    if(!(calls++)) FIXME( "stub\n" );
     if (token) *token = 0;
     return E_NOTIMPL;
 }




More information about the wine-cvs mailing list