aboutsummaryrefslogtreecommitdiff
path: root/CRT
Commit message (Collapse)AuthorAge
* 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>