aboutsummaryrefslogtreecommitdiff
path: root/ddk-template-cplusplus.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ddk-template-cplusplus.cpp')
-rw-r--r--ddk-template-cplusplus.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ddk-template-cplusplus.cpp b/ddk-template-cplusplus.cpp
index f9167ec..c1d9b29 100644
--- a/ddk-template-cplusplus.cpp
+++ b/ddk-template-cplusplus.cpp
@@ -103,7 +103,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;
@@ -116,7 +116,7 @@ extern "C"
return STATUS_SUCCESS;
}
- VOID DriverUnload(_In_ struct _DRIVER_OBJECT * DriverObject)
+ VOID DriverUnload(PDRIVER_OBJECT DriverObject)
{
(void)DriverObject;