From 116d1ede0cc0d5d57f593264251668531252c74b Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Wed, 6 May 2015 22:22:41 +0300 Subject: initial commit --- src/nt_path_converter/main.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/nt_path_converter/main.c (limited to 'src/nt_path_converter/main.c') 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 + * \copyright This file is licensed under the terms of the MIT License. + * See LICENSE.txt for details. + */ + +#include "device.h" + +#include + +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); +} -- cgit v1.2.3