ntdll: Move EventWrite() to ntdll.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9f55292085
commit
77887b474e
|
@ -293,7 +293,7 @@
|
|||
@ stdcall EventRegister(ptr ptr ptr ptr) ntdll.EtwEventRegister
|
||||
@ stdcall EventSetInformation(int64 long ptr long) ntdll.EtwEventSetInformation
|
||||
@ stdcall EventUnregister(int64) ntdll.EtwEventUnregister
|
||||
@ stdcall EventWrite(int64 ptr long ptr)
|
||||
@ stdcall EventWrite(int64 ptr long ptr) ntdll.EtwEventWrite
|
||||
# @ stub EventWriteEndScenario
|
||||
# @ stub EventWriteEx
|
||||
# @ stub EventWriteStartScenario
|
||||
|
|
|
@ -834,16 +834,6 @@ ULONG WINAPI EventActivityIdControl(ULONG code, GUID *guid)
|
|||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* EventWrite [ADVAPI32.@]
|
||||
*/
|
||||
ULONG WINAPI EventWrite( REGHANDLE handle, PCEVENT_DESCRIPTOR descriptor, ULONG count,
|
||||
PEVENT_DATA_DESCRIPTOR data )
|
||||
{
|
||||
FIXME("%s, %p, %u, %p: stub\n", wine_dbgstr_longlong(handle), descriptor, count, data);
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* EventWriteTransfer [ADVAPI32.@]
|
||||
*/
|
||||
|
|
|
@ -466,3 +466,13 @@ BOOLEAN WINAPI EtwEventEnabled( REGHANDLE handle, const EVENT_DESCRIPTOR *descri
|
|||
FIXME("(%s, %p): stub\n", wine_dbgstr_longlong(handle), descriptor);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* EtwEventWrite (NTDLL.@)
|
||||
*/
|
||||
ULONG WINAPI EtwEventWrite( REGHANDLE handle, const EVENT_DESCRIPTOR *descriptor, ULONG count,
|
||||
EVENT_DATA_DESCRIPTOR *data )
|
||||
{
|
||||
FIXME("(%s, %p, %u, %p): stub\n", wine_dbgstr_longlong(handle), descriptor, count, data);
|
||||
return ERROR_SUCCESS;
|
||||
}
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
@ stdcall EtwEventRegister(ptr ptr ptr ptr)
|
||||
@ stdcall EtwEventSetInformation(int64 long ptr long)
|
||||
@ stdcall EtwEventUnregister(int64)
|
||||
@ stdcall EtwEventWrite(int64 ptr long ptr)
|
||||
@ stdcall EtwRegisterTraceGuidsA(ptr ptr ptr long ptr str str ptr)
|
||||
@ stdcall EtwRegisterTraceGuidsW(ptr ptr ptr long ptr wstr wstr ptr)
|
||||
@ stdcall EtwUnregisterTraceGuids(int64)
|
||||
|
|
Loading…
Reference in New Issue