ntdll: Add stub for RtlGetUnloadEventTrace.
Signed-off-by: Louis Lenders <xerox.xerox2000x@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2ea6c93bc4
commit
9a53298eed
|
@ -669,7 +669,7 @@
|
|||
# @ stub RtlGetSecurityDescriptorRMControl
|
||||
# @ stub RtlGetSetBootStatusData
|
||||
@ stdcall RtlGetThreadErrorMode()
|
||||
# @ stub RtlGetUnloadEventTrace
|
||||
@ stdcall RtlGetUnloadEventTrace()
|
||||
@ stub RtlGetUserInfoHeap
|
||||
@ stdcall RtlGetVersion(ptr)
|
||||
@ stub RtlGuidToPropertySetName
|
||||
|
|
|
@ -1653,3 +1653,22 @@ NTSTATUS WINAPI RtlCreateUserProcess(UNICODE_STRING *path, ULONG attributes, RTL
|
|||
parent, inherit, debug, exception, info);
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
typedef struct _RTL_UNLOAD_EVENT_TRACE
|
||||
{
|
||||
PVOID BaseAddress;
|
||||
SIZE_T SizeOfImage;
|
||||
ULONG Sequence;
|
||||
ULONG TimeDateStamp;
|
||||
ULONG CheckSum;
|
||||
WCHAR ImageName[32];
|
||||
} RTL_UNLOAD_EVENT_TRACE, *PRTL_UNLOAD_EVENT_TRACE;
|
||||
|
||||
/*********************************************************************
|
||||
* RtlGetUnloadEventTrace [NTDLL.@]
|
||||
*/
|
||||
RTL_UNLOAD_EVENT_TRACE * WINAPI RtlGetUnloadEventTrace(void)
|
||||
{
|
||||
FIXME("stub!\n");
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue