mirror of
https://github.com/CyberSecurityUP/Offensive-Windows-Drivers-Development
synced 2026-06-06 15:34:28 +00:00
36 lines
510 B
C
36 lines
510 B
C
/*++
|
|
|
|
Module Name:
|
|
|
|
driver.h
|
|
|
|
Abstract:
|
|
|
|
This file contains the driver definitions.
|
|
|
|
Environment:
|
|
|
|
Kernel-mode Driver Framework
|
|
|
|
--*/
|
|
|
|
#include <ntddk.h>
|
|
#include <wdf.h>
|
|
#include <initguid.h>
|
|
|
|
#include "device.h"
|
|
#include "queue.h"
|
|
#include "trace.h"
|
|
|
|
EXTERN_C_START
|
|
|
|
//
|
|
// WDFDRIVER Events
|
|
//
|
|
|
|
DRIVER_INITIALIZE DriverEntry;
|
|
EVT_WDF_DRIVER_DEVICE_ADD CryptoDriver2EvtDeviceAdd;
|
|
EVT_WDF_OBJECT_CONTEXT_CLEANUP CryptoDriver2EvtDriverContextCleanup;
|
|
|
|
EXTERN_C_END
|