From 31486d98f42d6e8a9e6b07d4576c4e781c25bee7 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Sun, 1 Aug 2021 14:08:11 +0200 Subject: Circle-CI Signed-off-by: Toni Uhlig --- ddk-template-cplusplus-EASTL.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ddk-template-cplusplus-EASTL.cpp') diff --git a/ddk-template-cplusplus-EASTL.cpp b/ddk-template-cplusplus-EASTL.cpp index d3cb0e3..18123bf 100644 --- a/ddk-template-cplusplus-EASTL.cpp +++ b/ddk-template-cplusplus-EASTL.cpp @@ -100,7 +100,7 @@ extern "C" DRIVER_INITIALIZE DriverEntry; DRIVER_UNLOAD DriverUnload; - NTSTATUS DriverEntry(_In_ struct _DRIVER_OBJECT * DriverObject, _In_ PUNICODE_STRING RegistryPath) + NTSTATUS DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath) { (void)DriverObject; (void)RegistryPath; @@ -113,7 +113,7 @@ extern "C" return STATUS_SUCCESS; } - VOID DriverUnload(_In_ struct _DRIVER_OBJECT * DriverObject) + VOID DriverUnload(PDRIVER_OBJECT DriverObject) { (void)DriverObject; -- cgit v1.2.3