Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
ed976838
Commit
ed976838
authored
Oct 03, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Oct 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add stub for StopTraceA and StopTraceW.
parent
fe695f3e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
2 deletions
+26
-2
advapi32.spec
dlls/advapi32/advapi32.spec
+2
-2
eventlog.c
dlls/advapi32/eventlog.c
+24
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
ed976838
...
...
@@ -727,8 +727,8 @@
@ stdcall StartServiceW(long long ptr)
@ stdcall StartTraceA(ptr str ptr)
@ stdcall StartTraceW(ptr wstr ptr)
# @ stub StopTraceA
# @ stub StopTraceW
@ stdcall StopTraceA(int64 str ptr)
@ stdcall StopTraceW(int64 wstr ptr)
@ stdcall SynchronizeWindows31FilesAndWindowsNTRegistry(long long long long)
@ stdcall SystemFunction001(ptr ptr ptr)
@ stdcall SystemFunction002(ptr ptr ptr)
...
...
dlls/advapi32/eventlog.c
View file @
ed976838
...
...
@@ -795,6 +795,30 @@ ULONG WINAPI StartTraceA( PTRACEHANDLE pSessionHandle, LPCSTR SessionName, PEVEN
}
/******************************************************************************
* StopTraceW [ADVAPI32.@]
*
* Stop an event trace session
*
*/
ULONG
WINAPI
StopTraceW
(
TRACEHANDLE
session
,
LPCWSTR
session_name
,
PEVENT_TRACE_PROPERTIES
properties
)
{
FIXME
(
"(%s, %s, %p) stub
\n
"
,
wine_dbgstr_longlong
(
session
),
debugstr_w
(
session_name
),
properties
);
return
ERROR_SUCCESS
;
}
/******************************************************************************
* StopTraceA [ADVAPI32.@]
*
* See StopTraceW.
*
*/
ULONG
WINAPI
StopTraceA
(
TRACEHANDLE
session
,
LPCSTR
session_name
,
PEVENT_TRACE_PROPERTIES
properties
)
{
FIXME
(
"(%s, %s, %p) stub
\n
"
,
wine_dbgstr_longlong
(
session
),
debugstr_a
(
session_name
),
properties
);
return
ERROR_SUCCESS
;
}
/******************************************************************************
* TraceEvent [ADVAPI32.@]
*/
ULONG
WINAPI
TraceEvent
(
TRACEHANDLE
SessionHandle
,
PEVENT_TRACE_HEADER
EventTrace
)
...
...
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