advapi32: Stub TraceEvent.
This commit is contained in:
parent
93911d781e
commit
4351b37d09
|
@ -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
|
||||||
|
|
|
@ -491,6 +491,15 @@ ULONG WINAPI RegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
|
||||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
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.@]
|
* UnregisterTraceGuids [ADVAPI32.@]
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue