mirror of
https://github.com/CyberSecurityUP/Offensive-Windows-Drivers-Development
synced 2026-06-06 15:34:28 +00:00
Update Driver.c
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#include <ntddk.h>
|
||||
#include <wdf.h>
|
||||
#include "Device.h" // Certifique-se de que este cabeçalho está incluído
|
||||
#include "Device.h"
|
||||
|
||||
DRIVER_INITIALIZE DriverEntry;
|
||||
EVT_WDF_DRIVER_DEVICE_ADD CryptoDriverEvtDeviceAdd;
|
||||
@@ -39,5 +39,5 @@ CryptoDriverEvtDeviceAdd(
|
||||
_Inout_ PWDFDEVICE_INIT DeviceInit
|
||||
) {
|
||||
UNREFERENCED_PARAMETER(Driver);
|
||||
return CryptoDeviceCreate(DeviceInit); // Função definida em Device.c
|
||||
return CryptoDeviceCreate(DeviceInit); // Função definida em Device.c
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user