From 040444db8fc48cd4012bc7ec4568f6a9b6143cb3 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 28 Apr 2017 17:48:44 +0300 Subject: nt_path_converter -> nt_namespace --- .../nt_namespace/include/libnt_namespace/all.hpp | 8 ++++++++ .../nt_namespace/include/libnt_namespace/device.hpp | 21 +++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 um/wrappers/special/nt_namespace/include/libnt_namespace/all.hpp create mode 100644 um/wrappers/special/nt_namespace/include/libnt_namespace/device.hpp (limited to 'um/wrappers/special/nt_namespace/include/libnt_namespace') diff --git a/um/wrappers/special/nt_namespace/include/libnt_namespace/all.hpp b/um/wrappers/special/nt_namespace/include/libnt_namespace/all.hpp new file mode 100644 index 0000000..474b802 --- /dev/null +++ b/um/wrappers/special/nt_namespace/include/libnt_namespace/all.hpp @@ -0,0 +1,8 @@ +// Copyright (c) 2015 Egor Tensin +// This file is part of the "Windows 7 drivers" project. +// For details, see https://github.com/egor-tensin/windows7-drivers. +// Distributed under the MIT License. + +#pragma once + +#include "device.hpp" diff --git a/um/wrappers/special/nt_namespace/include/libnt_namespace/device.hpp b/um/wrappers/special/nt_namespace/include/libnt_namespace/device.hpp new file mode 100644 index 0000000..775b707 --- /dev/null +++ b/um/wrappers/special/nt_namespace/include/libnt_namespace/device.hpp @@ -0,0 +1,21 @@ +// Copyright (c) 2015 Egor Tensin +// This file is part of the "Windows 7 drivers" project. +// For details, see https://github.com/egor-tensin/windows7-drivers. +// Distributed under the MIT License. + +#pragma once + +#include "libservice/all.hpp" + +#include + +namespace libnt_namespace +{ + class Device : libservice::Device + { + public: + Device(); + + std::wstring convert_nt_path(const std::wstring&); + }; +} -- cgit v1.2.3