aboutsummaryrefslogtreecommitdiff
path: root/ddk-template-cplusplus-EASTL.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ddk-template-cplusplus-EASTL.cpp')
-rw-r--r--ddk-template-cplusplus-EASTL.cpp4
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;