[RTL][NTDLL] Add some function stubs

- LdrSetAppCompatDllRedirectionCallback
- RtlCancelTimer
- RtlCreateServiceSid
- RtlQueryProcessHeapInformation
- RtlQueueApcWow64Thread
- RtlSetTimer
- RtlUnhandledExceptionFilter2
- RtlpNotOwnerCriticalSection
This commit is contained in:
Timo Kreuzer 2019-09-21 12:46:01 +02:00
parent 150353ebf3
commit 5fa4fd7bef
10 changed files with 143 additions and 7 deletions

View file

@ -113,4 +113,16 @@ RtlRestoreContext(
UNIMPLEMENTED;
}
NTSTATUS
NTAPI
RtlQueueApcWow64Thread(
_In_ HANDLE ThreadHandle,
_In_ PKNORMAL_ROUTINE ApcRoutine,
_In_opt_ PVOID NormalContext,
_In_opt_ PVOID SystemArgument1,
_In_opt_ PVOID SystemArgument2)
{
UNIMPLEMENTED;
return STATUS_NOT_IMPLEMENTED;
}