advapi32: Add stub for QueryTraceW.
This commit is contained in:
parent
62b9df9031
commit
2ecb586005
|
@ -459,7 +459,7 @@
|
|||
@ stdcall QueryServiceStatus(long ptr)
|
||||
@ stdcall QueryServiceStatusEx (long long ptr long ptr)
|
||||
# @ stub QueryTraceA
|
||||
# @ stub QueryTraceW
|
||||
@ stdcall QueryTraceW(int64 wstr ptr)
|
||||
# @ stub QueryUsersOnEncryptedFile
|
||||
@ stdcall QueryWindows31FilesMigration(long)
|
||||
# @ stub ReadEncryptedFileRaw
|
||||
|
|
|
@ -817,3 +817,12 @@ ULONG WINAPI EventRegister( LPCGUID provider, PENABLECALLBACK callback, PVOID co
|
|||
FIXME("%s, %p, %p, %p\n", debugstr_guid(provider), callback, context, handle);
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* QueryTraceW [ADVAPI32.@]
|
||||
*/
|
||||
ULONG WINAPI QueryTraceW( TRACEHANDLE handle, LPCWSTR sessionname, PEVENT_TRACE_PROPERTIES properties )
|
||||
{
|
||||
FIXME("%s %s %p: stub\n", wine_dbgstr_longlong(handle), debugstr_w(sessionname), properties);
|
||||
return ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue