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 /CRT | |
parent | 6cea00b3248f8db19acd21644aa2f290a1644cd5 (diff) |
Circle-CI
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'CRT')
-rw-r--r-- | CRT/kcrt.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; |