Commit 9f37a90e authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

wevtapi: Return fake handle from EvtOpenChannelConfig.

parent 3fab0c4c
......@@ -99,7 +99,7 @@ BOOL WINAPI EvtNextChannelPath(EVT_HANDLE channel_enum, DWORD buffer_len, WCHAR
EVT_HANDLE WINAPI EvtOpenChannelConfig(EVT_HANDLE Session, LPCWSTR ChannelPath, DWORD Flags)
{
FIXME("(%p %s %u) stub\n", Session, debugstr_w(ChannelPath), Flags);
return NULL;
return (EVT_HANDLE)0xdeadbeef;
}
EVT_HANDLE WINAPI EvtQuery(EVT_HANDLE session, const WCHAR *path, const WCHAR *query, DWORD flags)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment