mirror of
https://github.com/reactos/reactos.git
synced 2025-06-26 11:09:42 +00:00
[RTL][NTDLL] Add some function stubs
- LdrSetAppCompatDllRedirectionCallback - RtlCancelTimer - RtlCreateServiceSid - RtlQueryProcessHeapInformation - RtlQueueApcWow64Thread - RtlSetTimer - RtlUnhandledExceptionFilter2 - RtlpNotOwnerCriticalSection
This commit is contained in:
parent
150353ebf3
commit
5fa4fd7bef
10 changed files with 143 additions and 7 deletions
|
@ -3995,4 +3995,20 @@ RtlMultipleFreeHeap(IN PVOID HeapHandle,
|
|||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Info:
|
||||
* - https://securityxploded.com/enumheaps.php
|
||||
* - https://evilcodecave.wordpress.com/2009/04/14/rtlqueryprocessheapinformation-as-anti-dbg-trick/
|
||||
*/
|
||||
struct _DEBUG_BUFFER;
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
RtlQueryProcessHeapInformation(
|
||||
IN struct _DEBUG_BUFFER *DebugBuffer)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue