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
35c272ca
Commit
35c272ca
authored
Mar 18, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Mar 27, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wevtapi: Add stub for EvtOpenChannelConfig.
parent
7bb41e75
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
142 additions
and
1 deletion
+142
-1
main.c
dlls/wevtapi/main.c
+8
-0
wevtapi.spec
dlls/wevtapi/wevtapi.spec
+1
-1
Makefile.in
include/Makefile.in
+1
-0
winevt.h
include/winevt.h
+132
-0
No files found.
dlls/wevtapi/main.c
View file @
35c272ca
/*
* Copyright 2012 Austin English
* Copyright 2012 André Hentschel
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
...
...
@@ -22,6 +23,7 @@
#include "windef.h"
#include "winbase.h"
#include "winevt.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
wevtapi
);
...
...
@@ -43,3 +45,9 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return
TRUE
;
}
EVT_HANDLE
WINAPI
EvtOpenChannelConfig
(
EVT_HANDLE
Session
,
LPCWSTR
ChannelPath
,
DWORD
Flags
)
{
FIXME
(
"(%p %s %u) stub
\n
"
,
Session
,
debugstr_w
(
ChannelPath
),
Flags
);
return
NULL
;
}
dlls/wevtapi/wevtapi.spec
View file @
35c272ca
...
...
@@ -29,7 +29,7 @@
@ stub EvtNextChannelPath
@ stub EvtNextEventMetadata
@ stub EvtNextPublisherId
@ st
ub EvtOpenChannelConfig
@ st
dcall EvtOpenChannelConfig(ptr wstr long)
@ stub EvtOpenChannelEnum
@ stub EvtOpenEventMetadataEnum
@ stub EvtOpenLog
...
...
include/Makefile.in
View file @
35c272ca
...
...
@@ -539,6 +539,7 @@ SRCDIR_INCLUDES = \
wine/library.h
\
wine/unicode.h
\
winerror.h
\
winevt.h
\
wingdi.h
\
winhttp.h
\
wininet.h
\
...
...
include/winevt.h
0 → 100644
View file @
35c272ca
/* Definitions for the Windows Event Log (wevtapi.dll)
*
* Copyright 2012 André Hentschel
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __WINE_WINEVT_H
#define __WINE_WINEVT_H
#include <wtypes.h>
#ifdef __cplusplus
extern
"C"
{
#endif
/* defined(__cplusplus) */
typedef
HANDLE
EVT_HANDLE
,
*
PEVT_HANDLE
;
typedef
enum
_EVT_CHANNEL_CONFIG_PROPERTY_ID
{
EvtChannelConfigEnabled
=
0
,
EvtChannelConfigIsolation
,
EvtChannelConfigType
,
EvtChannelConfigOwningPublisher
,
EvtChannelConfigClassicEventlog
,
EvtChannelConfigAccess
,
EvtChannelLoggingConfigRetention
,
EvtChannelLoggingConfigAutoBackup
,
EvtChannelLoggingConfigMaxSize
,
EvtChannelLoggingConfigLogFilePath
,
EvtChannelPublishingConfigLevel
,
EvtChannelPublishingConfigKeywords
,
EvtChannelPublishingConfigControlGuid
,
EvtChannelPublishingConfigBufferSize
,
EvtChannelPublishingConfigMinBuffers
,
EvtChannelPublishingConfigMaxBuffers
,
EvtChannelPublishingConfigLatency
,
EvtChannelPublishingConfigClockType
,
EvtChannelPublishingConfigSidType
,
EvtChannelPublisherList
,
EvtChannelPublishingConfigFileMax
,
EvtChannelConfigPropertyIdEND
}
EVT_CHANNEL_CONFIG_PROPERTY_ID
;
typedef
enum
_EVT_SUBSCRIBE_NOTIFY_ACTION
{
EvtSubscribeActionError
=
0
,
EvtSubscribeActionDeliver
}
EVT_SUBSCRIBE_NOTIFY_ACTION
;
typedef
struct
_EVT_VARIANT
{
union
{
BOOL
BooleanVal
;
INT8
SByteVal
;
INT16
Int16Val
;
INT32
Int32Val
;
INT64
Int64Val
;
UINT8
ByteVal
;
UINT16
UInt16Val
;
UINT32
UInt32Val
;
UINT64
UInt64Val
;
FLOAT
SingleVal
;
DOUBLE
DoubleVal
;
ULONGLONG
FileTimeVal
;
SYSTEMTIME
*
SysTimeVal
;
GUID
*
GuidVal
;
LPCWSTR
StringVal
;
LPCSTR
AnsiStringVal
;
PBYTE
BinaryVal
;
PSID
SidVal
;
SIZE_T
SizeTVal
;
BOOL
*
BooleanArr
;
INT8
*
SByteArr
;
INT16
*
Int16Arr
;
INT32
*
Int32Arr
;
INT64
*
Int64Arr
;
UINT8
*
ByteArr
;
UINT16
*
UInt16Arr
;
UINT32
*
UInt32Arr
;
UINT64
*
UInt64Arr
;
FLOAT
*
SingleArr
;
DOUBLE
*
DoubleArr
;
FILETIME
*
FileTimeArr
;
SYSTEMTIME
*
SysTimeArr
;
GUID
*
GuidArr
;
LPWSTR
*
StringArr
;
LPSTR
*
AnsiStringArr
;
PSID
*
SidArr
;
SIZE_T
*
SizeTArr
;
EVT_HANDLE
EvtHandleVal
;
LPCWSTR
XmlVal
;
LPCWSTR
*
XmlValArr
;
}
DUMMYUNIONNAME
;
DWORD
Count
;
DWORD
Type
;
}
EVT_VARIANT
,
*
PEVT_VARIANT
;
typedef
DWORD
(
WINAPI
*
EVT_SUBSCRIBE_CALLBACK
)(
EVT_SUBSCRIBE_NOTIFY_ACTION
Action
,
PVOID
UserContext
,
EVT_HANDLE
Event
);
BOOL
WINAPI
EvtGetChannelConfigProperty
(
EVT_HANDLE
ChannelConfig
,
EVT_CHANNEL_CONFIG_PROPERTY_ID
PropertyId
,
DWORD
Flags
,
DWORD
PropertyValueBufferSize
,
PEVT_VARIANT
PropertyValueBuffer
,
PDWORD
PropertyValueBufferUsed
);
BOOL
WINAPI
EvtSetChannelConfigProperty
(
EVT_HANDLE
ChannelConfig
,
EVT_CHANNEL_CONFIG_PROPERTY_ID
PropertyId
,
DWORD
Flags
,
PEVT_VARIANT
PropertyValue
);
EVT_HANDLE
WINAPI
EvtSubscribe
(
EVT_HANDLE
Session
,
HANDLE
SignalEvent
,
LPCWSTR
ChannelPath
,
LPCWSTR
Query
,
EVT_HANDLE
Bookmark
,
PVOID
context
,
EVT_SUBSCRIBE_CALLBACK
Callback
,
DWORD
Flags
);
EVT_HANDLE
WINAPI
EvtOpenChannelConfig
(
EVT_HANDLE
Session
,
LPCWSTR
ChannelPath
,
DWORD
Flags
);
#ifdef __cplusplus
}
/* extern "C" */
#endif
/* defined(__cplusplus) */
#endif
/* __WINE_WINEVT_H */
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