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
7ce4ae68
Commit
7ce4ae68
authored
Dec 02, 2016
by
Michael Müller
Committed by
Alexandre Julliard
Dec 02, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Move EventSetInformation from advapi32 to ntdll.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f4334f29
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
11 deletions
+12
-11
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
eventlog.c
dlls/advapi32/eventlog.c
+0
-10
misc.c
dlls/ntdll/misc.c
+10
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
7ce4ae68
...
...
@@ -273,7 +273,7 @@
@ stdcall EventEnabled(int64 ptr)
@ stdcall EventProviderEnabled(int64 long int64)
@ stdcall EventRegister(ptr ptr ptr ptr) ntdll.EtwEventRegister
@ stdcall EventSetInformation(int64 long ptr long)
@ stdcall EventSetInformation(int64 long ptr long)
ntdll.EtwEventSetInformation
@ stdcall EventUnregister(int64) ntdll.EtwEventUnregister
@ stdcall EventWrite(int64 ptr long ptr)
# @ stub EventWriteEndScenario
...
...
dlls/advapi32/eventlog.c
View file @
7ce4ae68
...
...
@@ -880,16 +880,6 @@ ULONG WINAPI EventWriteTransfer( REGHANDLE handle, PCEVENT_DESCRIPTOR descriptor
}
/******************************************************************************
* EventSetInformation [ADVAPI32.@]
*/
ULONG
WINAPI
EventSetInformation
(
REGHANDLE
handle
,
EVENT_INFO_CLASS
class
,
PVOID
info
,
ULONG
length
)
{
FIXME
(
"%u, %p, %u
\n
"
,
class
,
info
,
length
);
return
ERROR_SUCCESS
;
}
/******************************************************************************
* QueryTraceW [ADVAPI32.@]
*/
ULONG
WINAPI
QueryTraceW
(
TRACEHANDLE
handle
,
LPCWSTR
sessionname
,
PEVENT_TRACE_PROPERTIES
properties
)
...
...
dlls/ntdll/misc.c
View file @
7ce4ae68
...
...
@@ -380,6 +380,16 @@ ULONG WINAPI EtwEventUnregister( REGHANDLE handle )
return
ERROR_SUCCESS
;
}
/*********************************************************************
* EtwEventSetInformation (NTDLL.@)
*/
ULONG
WINAPI
EtwEventSetInformation
(
REGHANDLE
handle
,
EVENT_INFO_CLASS
class
,
void
*
info
,
ULONG
length
)
{
FIXME
(
"(%s, %u, %p, %u) stub
\n
"
,
wine_dbgstr_longlong
(
handle
),
class
,
info
,
length
);
return
ERROR_SUCCESS
;
}
/******************************************************************************
* EtwRegisterTraceGuidsW (NTDLL.@)
*
...
...
dlls/ntdll/ntdll.spec
View file @
7ce4ae68
...
...
@@ -42,6 +42,7 @@
@ stub DbgUiWaitStateChange
@ stdcall DbgUserBreakPoint()
@ stdcall EtwEventRegister(ptr ptr ptr ptr)
@ stdcall EtwEventSetInformation(int64 long ptr long)
@ stdcall EtwEventUnregister(int64)
@ stdcall EtwRegisterTraceGuidsA(ptr ptr ptr long ptr str str ptr)
@ stdcall EtwRegisterTraceGuidsW(ptr ptr ptr long ptr wstr wstr ptr)
...
...
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