advapi32: Stub TraceEvent.

This commit is contained in:
Vincent Povirk 2009-03-05 09:12:47 -06:00 committed by Alexandre Julliard
parent 93911d781e
commit 4351b37d09
2 changed files with 10 additions and 1 deletions

View File

@ -635,7 +635,7 @@
@ stdcall SystemFunction036(ptr long) # RtlGenRandom
@ stdcall SystemFunction040(ptr long long) # RtlEncryptMemory
@ stdcall SystemFunction041(ptr long long) # RtlDecryptMemory
@ stub TraceEvent
@ stdcall TraceEvent(double ptr)
@ stub TraceEventInstance
@ stub TraceMessage
@ stub TraceMessageVa

View File

@ -491,6 +491,15 @@ ULONG WINAPI RegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
return ERROR_CALL_NOT_IMPLEMENTED;
}
/******************************************************************************
* 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.@]
*