mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
18 lines
346 B
C
18 lines
346 B
C
#include <ntddk.h>
|
|
|
|
VOID
|
|
DriverUnload(PDRIVER_OBJECT pDriverObject)
|
|
{
|
|
DbgPrint("Test driver unloaded sucessfully\n");
|
|
}
|
|
|
|
NTSTATUS
|
|
DriverEntry(PDRIVER_OBJECT DriverObject,
|
|
PUNICODE_STRING RegistryPath)
|
|
{
|
|
DriverObject->DriverUnload = DriverUnload;
|
|
|
|
DbgPrint("Test driver loaded sucessfully\n");
|
|
|
|
return STATUS_SUCCESS;
|
|
} |