diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-08-01 14:08:11 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-08-01 14:42:46 +0200 |
commit | 31486d98f42d6e8a9e6b07d4576c4e781c25bee7 (patch) | |
tree | 819cdf7f370b61fe18239023e22779925a00cca4 /ddk-template-cplusplus-EASTL.cpp | |
parent | 6cea00b3248f8db19acd21644aa2f290a1644cd5 (diff) |
Circle-CI
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'ddk-template-cplusplus-EASTL.cpp')
-rw-r--r-- | ddk-template-cplusplus-EASTL.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; |