aboutsummaryrefslogtreecommitdiff
path: root/CRT/kcrt.c
Commit message (Collapse)AuthorAge
* Added basic CXX string obfuscation via constexpr.Toni Uhlig2023-12-23
| | | | | | | * obfuscate functions names retrieved via MmGetSystemRoutineAddress * add two new static libs: libcnative (C-only) and libcxxnative (CXX-only) Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Partial SEH support.Toni Uhlig2023-11-15
| | | | | | | * Removed linker script; .edata *and* .pdata required by MingW for SEH. * Removed buggy `-fdata-sections` and `-ffunction-sections`. 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 `nanoprintf.h` header only library to implement `::to_string` functions.Toni Uhlig2023-09-15
| | | | | | * `eastl::to_string` does not work for now 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>
* Added _enable()/_disable() intrinsic functions to enable/disable maskable ↵Toni Uhlig2023-06-02
| | | | | | interrupts. Fixes #3. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Implemented WorkQueue's as they are pretty common in WDK.Toni Uhlig2022-09-10
| | | | | | * added calloc() symbol Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Circle-CIToni Uhlig2021-08-01
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Set DriverUnload callback after DriverEntry called. Added appropriate README ↵Toni Uhlig2021-07-29
| | | | | | advisory. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Fixed ctor/dtor issue allowing use of static qualifiers for non primitives.Toni Uhlig2021-07-28
* split CRT in a C and C++ part * use "fake" entry point to init CRT and set a DriverUnload routine for de-init * added -Wl,--exclude-all-symbols to DRIVER_LDFLAGS Signed-off-by: Toni Uhlig <matzeton@googlemail.com>