aboutsummaryrefslogtreecommitdiff
path: root/CRT/ntdll_zw_functions.txt
Commit message (Collapse)AuthorAge
* Improved runtime API fn resolverToni Uhlig2025-06-25
| | | | | | | * added WriteToFile(...) example * make use of Wrapper functions if ntoskrnl API function already defined and marked with dllimport Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added MmMapIoSpaceEx.Toni Uhlig2024-05-28
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added MmCopyVirtualMemory. Fixed ZwProtectVirtualMemory.Toni Uhlig2023-12-22
| | | | | | * Note: only Win10 x64 supported at the moment Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added ObOpenObjectByPointer, MmCopyMemory, RtlLookupFunctionEntry, ↵Toni Uhlig2023-11-15
| | | | | | | | ZwProtectVirtualMemory wrapper. * Improved wrapper generator script. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added ZwQueryVirtualMemory / ZwQuerySystemInformation to Zw wrapper.Toni Uhlig2023-09-26
| | | | | | * ExAllocatePoolWithTag allocates paged memory if size is greater than page size Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added wrapper generator for functions that require an import library.Toni Uhlig2023-07-04
* generate wrapper functions that can be retrieved via `MmGetSystemRoutineAddress` * for now, only ZwTraceControl and ZwTraceEvent from ntdll are used Signed-off-by: Toni Uhlig <matzeton@googlemail.com>