Commit caadb1fc authored by Etaash Mathamsetty's avatar Etaash Mathamsetty Committed by Alexandre Julliard

wevtapi: Add stub for EvtCreateBookmark.

parent 240556e2
......@@ -141,3 +141,10 @@ BOOL WINAPI EvtExportLog(EVT_HANDLE session, const WCHAR *path, const WCHAR *que
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
EVT_HANDLE WINAPI EvtCreateBookmark(const WCHAR *bookmark_xml)
{
FIXME("(%s) stub!\n", debugstr_w(bookmark_xml));
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return NULL;
}
......@@ -2,7 +2,7 @@
@ stub EvtCancel
@ stub EvtClearLog
@ stdcall EvtClose(ptr)
@ stub EvtCreateBookmark
@ stdcall EvtCreateBookmark(wstr)
@ stub EvtCreateRenderContext
@ stdcall EvtExportLog(ptr wstr wstr wstr long)
@ stub EvtFormatMessage
......
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