15 lines
398 B
C++
15 lines
398 B
C++
#include <ntddk.h>
|
|
|
|
VOID DriverUnload(PDRIVER_OBJECT DriverObject)
|
|
{
|
|
UNREFERENCED_PARAMETER(DriverObject);
|
|
DbgPrint("EDR: Driver unloaded\n");
|
|
}
|
|
|
|
NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
|
|
{
|
|
UNREFERENCED_PARAMETER(RegistryPath);
|
|
DbgPrint("EDR: DriverEntry started\n");
|
|
DriverObject->DriverUnload = DriverUnload;
|
|
return STATUS_SUCCESS;
|
|
}
|