mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
06e11512f9
Needs rbuild files to test in ros. svn path=/trunk/; revision=32897
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;
|
|
} |