Commit bae48da7 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

advapi32: Silence the fixme in EventActivityIdControl.

parent ecb8d9f5
...@@ -830,7 +830,9 @@ BOOLEAN WINAPI EventProviderEnabled( REGHANDLE handle, UCHAR level, ULONGLONG ke ...@@ -830,7 +830,9 @@ BOOLEAN WINAPI EventProviderEnabled( REGHANDLE handle, UCHAR level, ULONGLONG ke
*/ */
ULONG WINAPI EventActivityIdControl(ULONG code, GUID *guid) ULONG WINAPI EventActivityIdControl(ULONG code, GUID *guid)
{ {
FIXME("0x%x, %p: stub\n", code, guid); static int once;
if (!once++) FIXME("0x%x, %p: stub\n", code, guid);
return ERROR_SUCCESS; return ERROR_SUCCESS;
} }
......
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