Commit d8968b95 authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

ntdll: Quiet some noisy ETW FIXMEs.

parent ce151dd6
...@@ -330,7 +330,7 @@ ULONG WINAPI EtwEventActivityIdControl(ULONG code, GUID *guid) ...@@ -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 ...@@ -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 ...@@ -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, ...@@ -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, ...@@ -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 ) ...@@ -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 ) ...@@ -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;
} }
......
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