Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d8968b95
Commit
d8968b95
authored
May 27, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
May 28, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Quiet some noisy ETW FIXMEs.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ce151dd6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
misc.c
dlls/ntdll/misc.c
+7
-7
No files found.
dlls/ntdll/misc.c
View file @
d8968b95
...
...
@@ -330,7 +330,7 @@ ULONG WINAPI EtwEventActivityIdControl(ULONG code, GUID *guid)
*/
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
;
}
...
...
@@ -340,7 +340,7 @@ BOOLEAN WINAPI EtwEventProviderEnabled( REGHANDLE handle, UCHAR level, ULONGLONG
ULONG
WINAPI
EtwEventRegister
(
LPCGUID
provider
,
PENABLECALLBACK
callback
,
PVOID
context
,
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
;
...
...
@@ -353,7 +353,7 @@ ULONG WINAPI EtwEventRegister( LPCGUID provider, PENABLECALLBACK callback, PVOID
*/
ULONG
WINAPI
EtwEventUnregister
(
REGHANDLE
handle
)
{
FIXME
(
"(%s) stub.
\n
"
,
wine_dbgstr_longlong
(
handle
));
WARN
(
"(%s) stub.
\n
"
,
wine_dbgstr_longlong
(
handle
));
return
ERROR_SUCCESS
;
}
...
...
@@ -413,7 +413,7 @@ ULONG WINAPI EtwRegisterTraceGuidsW( WMIDPREQUEST RequestAddress,
TRACE_GUID_REGISTRATION
*
TraceGuidReg
,
const
WCHAR
*
MofImagePath
,
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_w
(
MofResourceName
),
RegistrationHandle
);
...
...
@@ -438,7 +438,7 @@ ULONG WINAPI EtwRegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
TRACE_GUID_REGISTRATION
*
TraceGuidReg
,
const
char
*
MofImagePath
,
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_a
(
MofResourceName
),
RegistrationHandle
);
return
ERROR_SUCCESS
;
...
...
@@ -452,7 +452,7 @@ ULONG WINAPI EtwUnregisterTraceGuids( TRACEHANDLE RegistrationHandle )
if
(
!
RegistrationHandle
)
return
ERROR_INVALID_PARAMETER
;
FIXME
(
"%s: stub
\n
"
,
wine_dbgstr_longlong
(
RegistrationHandle
));
WARN
(
"%s: stub
\n
"
,
wine_dbgstr_longlong
(
RegistrationHandle
));
return
ERROR_SUCCESS
;
}
...
...
@@ -461,7 +461,7 @@ ULONG WINAPI EtwUnregisterTraceGuids( TRACEHANDLE RegistrationHandle )
*/
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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment