aboutsummaryrefslogtreecommitdiff
path: root/CRT
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-08-01 14:08:11 +0200
committerToni Uhlig <matzeton@googlemail.com>2021-08-01 14:42:46 +0200
commit31486d98f42d6e8a9e6b07d4576c4e781c25bee7 (patch)
tree819cdf7f370b61fe18239023e22779925a00cca4 /CRT
parent6cea00b3248f8db19acd21644aa2f290a1644cd5 (diff)
Circle-CI
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'CRT')
-rw-r--r--CRT/kcrt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/CRT/kcrt.c b/CRT/kcrt.c
index f2ea550..fff767d 100644
--- a/CRT/kcrt.c
+++ b/CRT/kcrt.c
@@ -10,8 +10,8 @@
extern void (*__CTOR_LIST__)();
extern void (*__DTOR_LIST__)();
-extern NTSTATUS __cdecl DriverEntry(_In_ struct _DRIVER_OBJECT * DriverObject, _In_ PUNICODE_STRING RegistryPath);
-extern void __cdecl DriverUnload(_In_ struct _DRIVER_OBJECT * DriverObject);
+extern NTSTATUS __cdecl DriverEntry(struct _DRIVER_OBJECT * DriverObject, PUNICODE_STRING RegistryPath);
+extern void __cdecl DriverUnload(struct _DRIVER_OBJECT * DriverObject);
DRIVER_INITIALIZE __cdecl _CRT_DriverEntry;
DRIVER_UNLOAD __cdecl _CRT_DriverUnload;
@@ -255,14 +255,14 @@ void __cdecl KCRT_OnDriverUnload(void)
__dtors();
}
-void __cdecl _CRT_DriverUnload(_In_ struct _DRIVER_OBJECT * DriverObject)
+void __cdecl _CRT_DriverUnload(struct _DRIVER_OBJECT * DriverObject)
{
DriverUnload(DriverObject);
KCRT_OnDriverUnload();
}
-NTSTATUS __cdecl _CRT_DriverEntry(_In_ struct _DRIVER_OBJECT * DriverObject, _In_ PUNICODE_STRING RegistryPath)
+NTSTATUS __cdecl _CRT_DriverEntry(struct _DRIVER_OBJECT * DriverObject, PUNICODE_STRING RegistryPath)
{
NTSTATUS retval;