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
e8f28511
Commit
e8f28511
authored
Feb 17, 2014
by
Henri Verbeet
Committed by
Alexandre Julliard
Feb 17, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add a stub for EventProviderEnabled.
parent
f38b36ee
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
3 deletions
+14
-3
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
eventlog.c
dlls/advapi32/eventlog.c
+10
-0
api-ms-win-downlevel-advapi32-l1-1-0.spec
...advapi32-l1-1-0/api-ms-win-downlevel-advapi32-l1-1-0.spec
+1
-1
api-ms-win-eventing-provider-l1-1-0.spec
...-provider-l1-1-0/api-ms-win-eventing-provider-l1-1-0.spec
+1
-1
evntprov.h
include/evntprov.h
+1
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
e8f28511
...
...
@@ -271,7 +271,7 @@
# @ stub EventAccessRemove
# @ stub EventActivityIdControl
@ stdcall EventEnabled(int64 ptr)
# @ stub EventProviderEnabled
@ stdcall EventProviderEnabled(int64 long int64)
@ stdcall EventRegister(ptr ptr ptr ptr)
@ stdcall EventUnregister(int64)
@ stdcall EventWrite(int64 ptr long ptr)
...
...
dlls/advapi32/eventlog.c
View file @
e8f28511
...
...
@@ -872,6 +872,16 @@ BOOLEAN WINAPI EventEnabled( REGHANDLE handle, PCEVENT_DESCRIPTOR descriptor )
}
/******************************************************************************
* EventProviderEnabled [ADVAPI32.@]
*
*/
BOOLEAN
WINAPI
EventProviderEnabled
(
REGHANDLE
handle
,
UCHAR
level
,
ULONGLONG
keyword
)
{
FIXME
(
"%s, %u, %s: stub
\n
"
,
wine_dbgstr_longlong
(
handle
),
level
,
wine_dbgstr_longlong
(
keyword
));
return
FALSE
;
}
/******************************************************************************
* EventWrite [ADVAPI32.@]
*/
ULONG
WINAPI
EventWrite
(
REGHANDLE
handle
,
PCEVENT_DESCRIPTOR
descriptor
,
ULONG
count
,
...
...
dlls/api-ms-win-downlevel-advapi32-l1-1-0/api-ms-win-downlevel-advapi32-l1-1-0.spec
View file @
e8f28511
...
...
@@ -40,7 +40,7 @@
@ stdcall EqualSid(ptr ptr) advapi32.EqualSid
@ stub EventActivityIdControl
@ stdcall EventEnabled(int64 ptr) advapi32.EventEnabled
@ st
ub
EventProviderEnabled
@ st
dcall EventProviderEnabled(int64 long int64) advapi32.
EventProviderEnabled
@ stdcall EventRegister(ptr ptr ptr ptr) advapi32.EventRegister
@ stdcall EventUnregister(int64) advapi32.EventUnregister
@ stdcall EventWrite(int64 ptr long ptr) advapi32.EventWrite
...
...
dlls/api-ms-win-eventing-provider-l1-1-0/api-ms-win-eventing-provider-l1-1-0.spec
View file @
e8f28511
@ stub EventActivityIdControl
@ stdcall EventEnabled(int64 ptr) advapi32.EventEnabled
@ st
ub
EventProviderEnabled
@ st
dcall EventProviderEnabled(int64 long int64) advapi32.
EventProviderEnabled
@ stdcall EventRegister(ptr ptr ptr ptr) advapi32.EventRegister
@ stub EventSetInformation
@ stdcall EventUnregister(int64) advapi32.EventUnregister
...
...
include/evntprov.h
View file @
e8f28511
...
...
@@ -60,6 +60,7 @@ typedef struct _EVENT_FILTER_DESCRIPTOR
typedef
VOID
(
NTAPI
*
PENABLECALLBACK
)(
LPCGUID
,
ULONG
,
UCHAR
,
ULONGLONG
,
ULONGLONG
,
PEVENT_FILTER_DESCRIPTOR
,
PVOID
);
BOOLEAN
WINAPI
EventEnabled
(
REGHANDLE
,
PCEVENT_DESCRIPTOR
);
BOOLEAN
WINAPI
EventProviderEnabled
(
REGHANDLE
,
UCHAR
,
ULONGLONG
);
ULONG
WINAPI
EventRegister
(
LPCGUID
,
PENABLECALLBACK
,
PVOID
,
PREGHANDLE
);
ULONG
WINAPI
EventUnregister
(
REGHANDLE
);
ULONG
WINAPI
EventWrite
(
REGHANDLE
,
PCEVENT_DESCRIPTOR
,
ULONG
,
PEVENT_DATA_DESCRIPTOR
);
...
...
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