Commit c7ce692d authored by Lei Zhang's avatar Lei Zhang Committed by Alexandre Julliard

ole32: Silence FIXME from CoGetContextToken stub.

parent 43cf3b80
...@@ -3742,7 +3742,8 @@ HRESULT WINAPI CoGetObjectContext(REFIID riid, void **ppv) ...@@ -3742,7 +3742,8 @@ HRESULT WINAPI CoGetObjectContext(REFIID riid, void **ppv)
*/ */
HRESULT WINAPI CoGetContextToken( ULONG_PTR *token ) HRESULT WINAPI CoGetContextToken( ULONG_PTR *token )
{ {
FIXME( "stub\n" ); static int calls;
if(!(calls++)) FIXME( "stub\n" );
if (token) *token = 0; if (token) *token = 0;
return E_NOTIMPL; return E_NOTIMPL;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment