Commit 03d22add authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

ntdll: Move UnregisterTraceGuids from advapi32 to ntdll.

parent 178400b2
......@@ -783,7 +783,7 @@
# @ stub UninstallApplication
@ stdcall UnlockServiceDatabase (ptr)
# @ stub UnregisterIdleTask
@ stdcall UnregisterTraceGuids(int64)
@ stdcall UnregisterTraceGuids(int64) ntdll.EtwUnregisterTraceGuids
@ stub UpdateTraceA
@ stub UpdateTraceW
# @ stub UsePinForEncryptedFilesA
......
......@@ -815,20 +815,6 @@ ULONG WINAPI TraceEvent( TRACEHANDLE SessionHandle, PEVENT_TRACE_HEADER EventTra
}
/******************************************************************************
* UnregisterTraceGuids [ADVAPI32.@]
*
* See RegisterTraceGuids
*
* FIXME
* Stub.
*/
ULONG WINAPI UnregisterTraceGuids( TRACEHANDLE RegistrationHandle )
{
FIXME("%s: stub\n", wine_dbgstr_longlong(RegistrationHandle));
return ERROR_CALL_NOT_IMPLEMENTED;
}
/******************************************************************************
* EventEnabled [ADVAPI32.@]
*
*/
......
......@@ -445,3 +445,15 @@ ULONG WINAPI EtwRegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
debugstr_a(MofResourceName), RegistrationHandle);
return ERROR_SUCCESS;
}
/******************************************************************************
* EtwUnregisterTraceGuids (NTDLL.@)
*/
ULONG WINAPI EtwUnregisterTraceGuids( TRACEHANDLE RegistrationHandle )
{
if (!RegistrationHandle)
return ERROR_INVALID_PARAMETER;
FIXME("%s: stub\n", wine_dbgstr_longlong(RegistrationHandle));
return ERROR_SUCCESS;
}
......@@ -46,6 +46,7 @@
@ stdcall EtwEventUnregister(int64)
@ stdcall EtwRegisterTraceGuidsA(ptr ptr ptr long ptr str str ptr)
@ stdcall EtwRegisterTraceGuidsW(ptr ptr ptr long ptr wstr wstr ptr)
@ stdcall EtwUnregisterTraceGuids(int64)
# @ stub KiFastSystemCall
# @ stub KiFastSystemCallRet
# @ stub KiIntSystemCall
......
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