Module: wine Branch: master Commit: c7ce692d139af1a5b7e4c6db00ef4750053f58ed URL: http://source.winehq.org/git/wine.git/?a=commit;h=c7ce692d139af1a5b7e4c6db00...
Author: Lei Zhang thestig@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; }