ntdll: Quiet some noisy ETW FIXMEs.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ce151dd681
commit
d8968b955c
|
@ -330,7 +330,7 @@ ULONG WINAPI EtwEventActivityIdControl(ULONG code, GUID *guid)
|
||||||
*/
|
*/
|
||||||
BOOLEAN WINAPI EtwEventProviderEnabled( REGHANDLE handle, UCHAR level, ULONGLONG keyword )
|
BOOLEAN WINAPI EtwEventProviderEnabled( REGHANDLE handle, UCHAR level, ULONGLONG keyword )
|
||||||
{
|
{
|
||||||
FIXME("%s, %u, %s: stub\n", wine_dbgstr_longlong(handle), level, wine_dbgstr_longlong(keyword));
|
WARN("%s, %u, %s: stub\n", wine_dbgstr_longlong(handle), level, wine_dbgstr_longlong(keyword));
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -340,7 +340,7 @@ BOOLEAN WINAPI EtwEventProviderEnabled( REGHANDLE handle, UCHAR level, ULONGLONG
|
||||||
ULONG WINAPI EtwEventRegister( LPCGUID provider, PENABLECALLBACK callback, PVOID context,
|
ULONG WINAPI EtwEventRegister( LPCGUID provider, PENABLECALLBACK callback, PVOID context,
|
||||||
PREGHANDLE handle )
|
PREGHANDLE handle )
|
||||||
{
|
{
|
||||||
FIXME("(%s, %p, %p, %p) stub.\n", debugstr_guid(provider), callback, context, handle);
|
WARN("(%s, %p, %p, %p) stub.\n", debugstr_guid(provider), callback, context, handle);
|
||||||
|
|
||||||
if (!handle) return ERROR_INVALID_PARAMETER;
|
if (!handle) return ERROR_INVALID_PARAMETER;
|
||||||
|
|
||||||
|
@ -353,7 +353,7 @@ ULONG WINAPI EtwEventRegister( LPCGUID provider, PENABLECALLBACK callback, PVOID
|
||||||
*/
|
*/
|
||||||
ULONG WINAPI EtwEventUnregister( REGHANDLE handle )
|
ULONG WINAPI EtwEventUnregister( REGHANDLE handle )
|
||||||
{
|
{
|
||||||
FIXME("(%s) stub.\n", wine_dbgstr_longlong(handle));
|
WARN("(%s) stub.\n", wine_dbgstr_longlong(handle));
|
||||||
return ERROR_SUCCESS;
|
return ERROR_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -413,7 +413,7 @@ ULONG WINAPI EtwRegisterTraceGuidsW( WMIDPREQUEST RequestAddress,
|
||||||
TRACE_GUID_REGISTRATION *TraceGuidReg, const WCHAR *MofImagePath,
|
TRACE_GUID_REGISTRATION *TraceGuidReg, const WCHAR *MofImagePath,
|
||||||
const WCHAR *MofResourceName, TRACEHANDLE *RegistrationHandle )
|
const WCHAR *MofResourceName, TRACEHANDLE *RegistrationHandle )
|
||||||
{
|
{
|
||||||
FIXME("(%p, %p, %s, %u, %p, %s, %s, %p): stub\n", RequestAddress, RequestContext,
|
WARN("(%p, %p, %s, %u, %p, %s, %s, %p): stub\n", RequestAddress, RequestContext,
|
||||||
debugstr_guid(ControlGuid), GuidCount, TraceGuidReg, debugstr_w(MofImagePath),
|
debugstr_guid(ControlGuid), GuidCount, TraceGuidReg, debugstr_w(MofImagePath),
|
||||||
debugstr_w(MofResourceName), RegistrationHandle);
|
debugstr_w(MofResourceName), RegistrationHandle);
|
||||||
|
|
||||||
|
@ -438,7 +438,7 @@ ULONG WINAPI EtwRegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
|
||||||
TRACE_GUID_REGISTRATION *TraceGuidReg, const char *MofImagePath,
|
TRACE_GUID_REGISTRATION *TraceGuidReg, const char *MofImagePath,
|
||||||
const char *MofResourceName, TRACEHANDLE *RegistrationHandle )
|
const char *MofResourceName, TRACEHANDLE *RegistrationHandle )
|
||||||
{
|
{
|
||||||
FIXME("(%p, %p, %s, %u, %p, %s, %s, %p): stub\n", RequestAddress, RequestContext,
|
WARN("(%p, %p, %s, %u, %p, %s, %s, %p): stub\n", RequestAddress, RequestContext,
|
||||||
debugstr_guid(ControlGuid), GuidCount, TraceGuidReg, debugstr_a(MofImagePath),
|
debugstr_guid(ControlGuid), GuidCount, TraceGuidReg, debugstr_a(MofImagePath),
|
||||||
debugstr_a(MofResourceName), RegistrationHandle);
|
debugstr_a(MofResourceName), RegistrationHandle);
|
||||||
return ERROR_SUCCESS;
|
return ERROR_SUCCESS;
|
||||||
|
@ -452,7 +452,7 @@ ULONG WINAPI EtwUnregisterTraceGuids( TRACEHANDLE RegistrationHandle )
|
||||||
if (!RegistrationHandle)
|
if (!RegistrationHandle)
|
||||||
return ERROR_INVALID_PARAMETER;
|
return ERROR_INVALID_PARAMETER;
|
||||||
|
|
||||||
FIXME("%s: stub\n", wine_dbgstr_longlong(RegistrationHandle));
|
WARN("%s: stub\n", wine_dbgstr_longlong(RegistrationHandle));
|
||||||
return ERROR_SUCCESS;
|
return ERROR_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -461,7 +461,7 @@ ULONG WINAPI EtwUnregisterTraceGuids( TRACEHANDLE RegistrationHandle )
|
||||||
*/
|
*/
|
||||||
BOOLEAN WINAPI EtwEventEnabled( REGHANDLE handle, const EVENT_DESCRIPTOR *descriptor )
|
BOOLEAN WINAPI EtwEventEnabled( REGHANDLE handle, const EVENT_DESCRIPTOR *descriptor )
|
||||||
{
|
{
|
||||||
FIXME("(%s, %p): stub\n", wine_dbgstr_longlong(handle), descriptor);
|
WARN("(%s, %p): stub\n", wine_dbgstr_longlong(handle), descriptor);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue