Advertisement
Guest User

sample driver

a guest
May 24th, 2019
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <ntddk.h>
  2.  
  3. NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
  4. {
  5.     UNREFERENCED_PARAMETER(DriverObject);
  6.     UNREFERENCED_PARAMETER(RegistryPath);
  7.  
  8.     DbgPrint("Hello from DriverEntry\n");
  9.     return STATUS_SUCCESS;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement