mirror of
https://github.com/TheCruZ/kdmapper
synced 2026-06-06 16:54:27 +00:00
15 lines
260 B
C++
15 lines
260 B
C++
|
|
#include <ntddk.h>
|
|
|
|
NTSTATUS CustomDriverEntry(
|
|
_In_ PDRIVER_OBJECT kdmapperParam1,
|
|
_In_ PUNICODE_STRING kdmapperParam2
|
|
)
|
|
{
|
|
UNREFERENCED_PARAMETER(kdmapperParam1);
|
|
UNREFERENCED_PARAMETER(kdmapperParam2);
|
|
|
|
DbgPrintEx(0, 0, "Hello world!");
|
|
|
|
return 0;
|
|
} |