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
9f552920
Commit
9f552920
authored
May 05, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Move EventEnabled() to ntdll.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
59c39fa1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
11 deletions
+11
-11
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
eventlog.c
dlls/advapi32/eventlog.c
+0
-10
misc.c
dlls/ntdll/misc.c
+9
-0
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
9f552920
...
...
@@ -288,7 +288,7 @@
# @ stub EventAccessQuery
# @ stub EventAccessRemove
@ stdcall EventActivityIdControl(long ptr)
@ stdcall EventEnabled(int64 ptr)
@ stdcall EventEnabled(int64 ptr)
ntdll.EtwEventEnabled
@ stdcall EventProviderEnabled(int64 long int64)
@ stdcall EventRegister(ptr ptr ptr ptr) ntdll.EtwEventRegister
@ stdcall EventSetInformation(int64 long ptr long) ntdll.EtwEventSetInformation
...
...
dlls/advapi32/eventlog.c
View file @
9f552920
...
...
@@ -815,16 +815,6 @@ ULONG WINAPI TraceEvent( TRACEHANDLE SessionHandle, PEVENT_TRACE_HEADER EventTra
}
/******************************************************************************
* EventEnabled [ADVAPI32.@]
*
*/
BOOLEAN
WINAPI
EventEnabled
(
REGHANDLE
handle
,
PCEVENT_DESCRIPTOR
descriptor
)
{
FIXME
(
"(%s, %p): stub
\n
"
,
wine_dbgstr_longlong
(
handle
),
descriptor
);
return
FALSE
;
}
/******************************************************************************
* EventProviderEnabled [ADVAPI32.@]
*
*/
...
...
dlls/ntdll/misc.c
View file @
9f552920
...
...
@@ -457,3 +457,12 @@ ULONG WINAPI EtwUnregisterTraceGuids( TRACEHANDLE RegistrationHandle )
FIXME
(
"%s: stub
\n
"
,
wine_dbgstr_longlong
(
RegistrationHandle
));
return
ERROR_SUCCESS
;
}
/******************************************************************************
* EtwEventEnabled (NTDLL.@)
*/
BOOLEAN
WINAPI
EtwEventEnabled
(
REGHANDLE
handle
,
const
EVENT_DESCRIPTOR
*
descriptor
)
{
FIXME
(
"(%s, %p): stub
\n
"
,
wine_dbgstr_longlong
(
handle
),
descriptor
);
return
FALSE
;
}
dlls/ntdll/ntdll.spec
View file @
9f552920
...
...
@@ -41,6 +41,7 @@
# @ stub DbgUiStopDebugging
@ stub DbgUiWaitStateChange
@ stdcall DbgUserBreakPoint()
@ stdcall EtwEventEnabled(int64 ptr)
@ stdcall EtwEventRegister(ptr ptr ptr ptr)
@ stdcall EtwEventSetInformation(int64 long ptr long)
@ stdcall EtwEventUnregister(int64)
...
...
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