| 1 | #include "Include.hpp" |
| 2 | |
| 3 | NTSTATUS DriverEntry(std::uintptr_t mappedImageBase, std::size_t mappedImageSize) |
| 4 | { |
| 5 | DebugPrint("Mapped [%p] w/ Size [0x%x]\n", mappedImageBase, mappedImageSize); |
| 6 | |
| 7 | return STATUS_SUCCESS; |
| 8 | } |
nothing calls this directly
no outgoing calls
no test coverage detected