diff options
Diffstat (limited to 'src/nt_path_converter/main.c')
-rw-r--r-- | src/nt_path_converter/main.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/nt_path_converter/main.c b/src/nt_path_converter/main.c new file mode 100644 index 0000000..4d969de --- /dev/null +++ b/src/nt_path_converter/main.c @@ -0,0 +1,22 @@ +/** + * \file + * \author Egor Tensin <Egor.Tensin@gmail.com> + * \copyright This file is licensed under the terms of the MIT License. + * See LICENSE.txt for details. + */ + +#include "device.h" + +#include <ntddk.h> + +static void on_driver_unload(DRIVER_OBJECT *driver_object) +{ + destroy_devices(); +} + +NTSTATUS DriverEntry(DRIVER_OBJECT *driver_object, + UNICODE_STRING *registry_path) +{ + driver_object->DriverUnload = on_driver_unload; + return set_up_devices(driver_object); +} |