ole32: Silence FIXME from CoGetContextToken stub.

This commit is contained in:
Lei Zhang 2008-07-21 11:55:48 -07:00 committed by Alexandre Julliard
parent 43cf3b80af
commit c7ce692d13
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}