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
518e102a
Commit
518e102a
authored
May 09, 2015
by
Martin Storsjo
Committed by
Alexandre Julliard
May 11, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add a stub implementation of EventSetInformation.
parent
ff25b25a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
1 deletion
+21
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-0
eventlog.c
dlls/advapi32/eventlog.c
+10
-0
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
+9
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
518e102a
...
...
@@ -273,6 +273,7 @@
@ stdcall EventEnabled(int64 ptr)
@ stdcall EventProviderEnabled(int64 long int64)
@ stdcall EventRegister(ptr ptr ptr ptr)
@ stdcall EventSetInformation(int64 long ptr long)
@ stdcall EventUnregister(int64)
@ stdcall EventWrite(int64 ptr long ptr)
# @ stub EventWriteEndScenario
...
...
dlls/advapi32/eventlog.c
View file @
518e102a
...
...
@@ -939,6 +939,16 @@ ULONG WINAPI EventWrite( REGHANDLE handle, PCEVENT_DESCRIPTOR descriptor, ULONG
}
/******************************************************************************
* 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/api-ms-win-eventing-provider-l1-1-0/api-ms-win-eventing-provider-l1-1-0.spec
View file @
518e102a
...
...
@@ -2,7 +2,7 @@
@ stdcall EventEnabled(int64 ptr) advapi32.EventEnabled
@ stdcall EventProviderEnabled(int64 long int64) advapi32.EventProviderEnabled
@ stdcall EventRegister(ptr ptr ptr ptr) advapi32.EventRegister
@ st
ub
EventSetInformation
@ st
dcall EventSetInformation(int64 long ptr long) advapi32.
EventSetInformation
@ stdcall EventUnregister(int64) advapi32.EventUnregister
@ stdcall EventWrite(int64 ptr long ptr) advapi32.EventWrite
@ stub EventWriteEx
...
...
include/evntprov.h
View file @
518e102a
...
...
@@ -59,9 +59,18 @@ typedef struct _EVENT_FILTER_DESCRIPTOR
typedef
VOID
(
NTAPI
*
PENABLECALLBACK
)(
LPCGUID
,
ULONG
,
UCHAR
,
ULONGLONG
,
ULONGLONG
,
PEVENT_FILTER_DESCRIPTOR
,
PVOID
);
typedef
enum
_EVENT_INFO_CLASS
{
EventProviderBinaryTrackInfo
=
0
,
EventProviderSetTraits
,
EventProviderUseDescriptorType
,
MaxEventInfo
}
EVENT_INFO_CLASS
;
BOOLEAN
WINAPI
EventEnabled
(
REGHANDLE
,
PCEVENT_DESCRIPTOR
);
BOOLEAN
WINAPI
EventProviderEnabled
(
REGHANDLE
,
UCHAR
,
ULONGLONG
);
ULONG
WINAPI
EventRegister
(
LPCGUID
,
PENABLECALLBACK
,
PVOID
,
PREGHANDLE
);
ULONG
WINAPI
EventSetInformation
(
REGHANDLE
,
EVENT_INFO_CLASS
,
PVOID
,
ULONG
);
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