diff --git a/Introduction/Project/CryptoDriver2/Driver.c b/Introduction/Project/CryptoDriver2/Driver.c index d691343..cf10456 100644 --- a/Introduction/Project/CryptoDriver2/Driver.c +++ b/Introduction/Project/CryptoDriver2/Driver.c @@ -1,6 +1,6 @@ #include #include -#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 }