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
61d6a6bf
Commit
61d6a6bf
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 ControlTrace[A|W].
parent
75794304
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 @
61d6a6bf
...
...
@@ -65,8 +65,8 @@
@ stdcall CommandLineFromMsiDescriptor(wstr ptr ptr)
# @ stub ComputeAccessTokenFromCodeAuthzLevel
@ stdcall ControlService(long long ptr)
# @ stub ControlTraceA
# @ stub ControlTraceW
@ stdcall ControlTraceA(double str ptr long)
@ stdcall ControlTraceW(double wstr ptr long)
# @ stub ConvertAccessToSecurityDescriptorA
# @ stub ConvertAccessToSecurityDescriptorW
# @ stub ConvertSDToStringSDRootDomainA
...
...
dlls/advapi32/eventlog.c
View file @
61d6a6bf
...
...
@@ -116,6 +116,30 @@ BOOL WINAPI CloseEventLog( HANDLE hEventLog )
}
/******************************************************************************
* ControlTraceW [ADVAPI32.@]
*
* Control a givel event trace session
*
*/
ULONG
WINAPI
ControlTraceW
(
TRACEHANDLE
hSession
,
LPCWSTR
SessionName
,
PEVENT_TRACE_PROPERTIES
Properties
,
ULONG
control
)
{
FIXME
(
"(%s, %s, %p, %d) stub
\n
"
,
wine_dbgstr_longlong
(
hSession
),
debugstr_w
(
SessionName
),
Properties
,
control
);
return
ERROR_SUCCESS
;
}
/******************************************************************************
* ControlTraceA [ADVAPI32.@]
*
* See ControlTraceW.
*
*/
ULONG
WINAPI
ControlTraceA
(
TRACEHANDLE
hSession
,
LPCSTR
SessionName
,
PEVENT_TRACE_PROPERTIES
Properties
,
ULONG
control
)
{
FIXME
(
"(%s, %s, %p, %d) stub
\n
"
,
wine_dbgstr_longlong
(
hSession
),
debugstr_a
(
SessionName
),
Properties
,
control
);
return
ERROR_SUCCESS
;
}
/******************************************************************************
* DeregisterEventSource [ADVAPI32.@]
*
* Closes a write handle to an event log
...
...
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