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
d91cf685
Commit
d91cf685
authored
Nov 28, 2017
by
Alex Henrie
Committed by
Alexandre Julliard
Nov 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wevtapi: Add EvtOpenSession stub.
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a3ea8b6c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
main.c
dlls/wevtapi/main.c
+6
-0
wevtapi.spec
dlls/wevtapi/wevtapi.spec
+1
-1
winevt.h
include/winevt.h
+4
-0
No files found.
dlls/wevtapi/main.c
View file @
d91cf685
...
...
@@ -44,6 +44,12 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return
TRUE
;
}
EVT_HANDLE
WINAPI
EvtOpenSession
(
EVT_LOGIN_CLASS
login_class
,
void
*
login
,
DWORD
timeout
,
DWORD
flags
)
{
FIXME
(
"(%u %p %u %u) stub
\n
"
,
login_class
,
login
,
timeout
,
flags
);
return
NULL
;
}
BOOL
WINAPI
EvtGetChannelConfigProperty
(
EVT_HANDLE
ChannelConfig
,
EVT_CHANNEL_CONFIG_PROPERTY_ID
PropertyId
,
DWORD
Flags
,
...
...
dlls/wevtapi/wevtapi.spec
View file @
d91cf685
...
...
@@ -35,7 +35,7 @@
@ stub EvtOpenLog
@ stub EvtOpenPublisherEnum
@ stub EvtOpenPublisherMetadata
@ st
ub EvtOpenSession
@ st
dcall EvtOpenSession(long ptr long long)
@ stdcall EvtQuery(ptr wstr wstr long)
@ stub EvtRender
@ stub EvtSaveChannelConfig
...
...
include/winevt.h
View file @
d91cf685
...
...
@@ -53,6 +53,10 @@ typedef enum _EVT_CHANNEL_CONFIG_PROPERTY_ID {
EvtChannelConfigPropertyIdEND
}
EVT_CHANNEL_CONFIG_PROPERTY_ID
;
typedef
enum
_EVT_LOGIN_CLASS
{
EvtRpcLogin
=
1
}
EVT_LOGIN_CLASS
;
typedef
enum
_EVT_SUBSCRIBE_NOTIFY_ACTION
{
EvtSubscribeActionError
=
0
,
EvtSubscribeActionDeliver
...
...
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