advapi32: Silence the fixme in EventActivityIdControl.

Signed-off-by: Stefan Leichter <sle85276@gmx.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Stefan Leichter 2018-03-25 10:29:39 +02:00 committed by Alexandre Julliard
parent ecb8d9f551
commit bae48da7c5
1 changed files with 3 additions and 1 deletions

View File

@ -830,7 +830,9 @@ BOOLEAN WINAPI EventProviderEnabled( REGHANDLE handle, UCHAR level, ULONGLONG ke
*/
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;
}