aboutsummaryrefslogtreecommitdiff
path: root/examples
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 `::to_string_hex()`.Toni Uhlig2023-09-27
| | | | 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 ::from_unicode to convert unicode strings to ansi string in kernel mode.Toni Uhlig2023-09-15
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Vsnprintf's a warning into the buffer if eastl::to_string is used.Toni Uhlig2023-09-15
| | | | | | * unfortunately, a compile time warning is not feasable w/o modifying EASTL sources 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 ThreadArgs, Event, WorkItem.Toni Uhlig2023-09-12
| | | | | | | * added/modified WorkQueue example * enable additional EASTL features in user space Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Improved WorkQueue / WorkItem.Toni Uhlig2023-07-21
| | | | | | * make use of C++ paradigms instead of C Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Fixed ArchLinux build.Toni Uhlig2023-07-05
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Improved `examples/dpp-example-cplusplus-EASTL.cpp` user mode build.Toni Uhlig2023-07-02
| | | | | | * added `_enable()` / `_disable()` semantics to `examples/dpp-example.c` Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* example3 supports BUILD_NATIVEToni Uhlig2023-06-28
| | | | 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>
* Repository clean up, renamed ddk-template* to dpp-example*.Toni Uhlig2022-09-09
* Improved/Added root and examples Makefile * Adapted CIs Signed-off-by: Toni Uhlig <matzeton@googlemail.com>