Update Driver.c

This commit is contained in:
Joas A Santos
2025-01-14 12:57:32 -03:00
committed by GitHub
parent ddcc7ac838
commit 60196e31fb
+2 -2
View File
@@ -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
}