Commit 4351b37d authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

advapi32: Stub TraceEvent.

parent 93911d78
...@@ -635,7 +635,7 @@ ...@@ -635,7 +635,7 @@
@ stdcall SystemFunction036(ptr long) # RtlGenRandom @ stdcall SystemFunction036(ptr long) # RtlGenRandom
@ stdcall SystemFunction040(ptr long long) # RtlEncryptMemory @ stdcall SystemFunction040(ptr long long) # RtlEncryptMemory
@ stdcall SystemFunction041(ptr long long) # RtlDecryptMemory @ stdcall SystemFunction041(ptr long long) # RtlDecryptMemory
@ stub TraceEvent @ stdcall TraceEvent(double ptr)
@ stub TraceEventInstance @ stub TraceEventInstance
@ stub TraceMessage @ stub TraceMessage
@ stub TraceMessageVa @ stub TraceMessageVa
......
...@@ -492,6 +492,15 @@ ULONG WINAPI RegisterTraceGuidsA( WMIDPREQUEST RequestAddress, ...@@ -492,6 +492,15 @@ ULONG WINAPI RegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
} }
/****************************************************************************** /******************************************************************************
* TraceEvent [ADVAPI32.@]
*/
ULONG WINAPI TraceEvent( TRACEHANDLE SessionHandle, PEVENT_TRACE_HEADER EventTrace )
{
FIXME("%s %p\n", wine_dbgstr_longlong(SessionHandle), EventTrace);
return ERROR_CALL_NOT_IMPLEMENTED;
}
/******************************************************************************
* UnregisterTraceGuids [ADVAPI32.@] * UnregisterTraceGuids [ADVAPI32.@]
* *
* See RegisterTraceGuids * See RegisterTraceGuids
......
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