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
6648d267
Commit
6648d267
authored
Oct 11, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Oct 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add stubs for StartTrace[A|W].
parent
4f7fc1b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
2 deletions
+28
-2
advapi32.spec
dlls/advapi32/advapi32.spec
+2
-2
eventlog.c
dlls/advapi32/eventlog.c
+26
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
6648d267
...
...
@@ -592,8 +592,8 @@
@ stdcall StartServiceCtrlDispatcherA(ptr)
@ stdcall StartServiceCtrlDispatcherW(ptr)
@ stdcall StartServiceW(long long ptr)
# @ stub StartTraceA
# @ stub StartTraceW
@ stdcall StartTraceA(ptr str ptr)
@ stdcall StartTraceW(ptr wstr ptr)
# @ stub StopTraceA
# @ stub StopTraceW
@ stdcall SynchronizeWindows31FilesAndWindowsNTRegistry(long long long long)
...
...
dlls/advapi32/eventlog.c
View file @
6648d267
...
...
@@ -519,6 +519,32 @@ ULONG WINAPI RegisterTraceGuidsA( WMIDPREQUEST RequestAddress,
}
/******************************************************************************
* StartTraceW [ADVAPI32.@]
*
* Register and start an event trace session
*
*/
ULONG
WINAPI
StartTraceW
(
PTRACEHANDLE
pSessionHandle
,
LPCWSTR
SessionName
,
PEVENT_TRACE_PROPERTIES
Properties
)
{
FIXME
(
"(%p, %s, %p) stub
\n
"
,
pSessionHandle
,
debugstr_w
(
SessionName
),
Properties
);
if
(
pSessionHandle
)
*
pSessionHandle
=
0xcafe4242
;
return
ERROR_SUCCESS
;
}
/******************************************************************************
* StartTraceA [ADVAPI32.@]
*
* See StartTraceW.
*
*/
ULONG
WINAPI
StartTraceA
(
PTRACEHANDLE
pSessionHandle
,
LPCSTR
SessionName
,
PEVENT_TRACE_PROPERTIES
Properties
)
{
FIXME
(
"(%p, %s, %p) stub
\n
"
,
pSessionHandle
,
debugstr_a
(
SessionName
),
Properties
);
if
(
pSessionHandle
)
*
pSessionHandle
=
0xcafe4242
;
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