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
d7cc4f2c
Commit
d7cc4f2c
authored
Aug 31, 2017
by
Austin English
Committed by
Alexandre Julliard
Sep 01, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Only show OpenTraceA/W FIXME once.
Signed-off-by:
Austin English
<
austinenglish@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
3ab61749
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
eventlog.c
dlls/advapi32/eventlog.c
+6
-2
No files found.
dlls/advapi32/eventlog.c
View file @
d7cc4f2c
...
...
@@ -859,7 +859,9 @@ ULONG WINAPI QueryTraceW( TRACEHANDLE handle, LPCWSTR sessionname, PEVENT_TRACE_
*/
TRACEHANDLE
WINAPI
OpenTraceA
(
PEVENT_TRACE_LOGFILEA
logfile
)
{
FIXME
(
"%p: stub
\n
"
,
logfile
);
static
int
once
;
if
(
!
once
++
)
FIXME
(
"%p: stub
\n
"
,
logfile
);
SetLastError
(
ERROR_ACCESS_DENIED
);
return
INVALID_PROCESSTRACE_HANDLE
;
}
...
...
@@ -869,7 +871,9 @@ TRACEHANDLE WINAPI OpenTraceA( PEVENT_TRACE_LOGFILEA logfile )
*/
TRACEHANDLE
WINAPI
OpenTraceW
(
PEVENT_TRACE_LOGFILEW
logfile
)
{
FIXME
(
"%p: stub
\n
"
,
logfile
);
static
int
once
;
if
(
!
once
++
)
FIXME
(
"%p: stub
\n
"
,
logfile
);
SetLastError
(
ERROR_ACCESS_DENIED
);
return
INVALID_PROCESSTRACE_HANDLE
;
}
...
...
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