aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils/libnt_path_converter/include
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-05-11 13:33:34 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-05-11 13:33:34 +0300
commit43c90fc4001b6a8b509e5312a80054dca6bd956f (patch)
tree16f608305156fb6739b0bc340fb4aaed51727490 /utils/libnt_path_converter/include
parentlibservice: add virtual device wrappers (diff)
downloadwindows7-drivers-43c90fc4001b6a8b509e5312a80054dca6bd956f.tar.gz
windows7-drivers-43c90fc4001b6a8b509e5312a80054dca6bd956f.zip
add libnt_path_converter
Diffstat (limited to 'utils/libnt_path_converter/include')
-rw-r--r--utils/libnt_path_converter/include/libnt_path_converter/all.hpp11
-rw-r--r--utils/libnt_path_converter/include/libnt_path_converter/device.hpp24
2 files changed, 35 insertions, 0 deletions
diff --git a/utils/libnt_path_converter/include/libnt_path_converter/all.hpp b/utils/libnt_path_converter/include/libnt_path_converter/all.hpp
new file mode 100644
index 0000000..899fc3d
--- /dev/null
+++ b/utils/libnt_path_converter/include/libnt_path_converter/all.hpp
@@ -0,0 +1,11 @@
+/**
+ * \file
+ * \author Egor Tensin <Egor.Tensin@gmail.com>
+ * \date 2015
+ * \copyright This file is licensed under the terms of the MIT License.
+ * See LICENSE.txt for details.
+ */
+
+#pragma once
+
+#include "device.hpp"
diff --git a/utils/libnt_path_converter/include/libnt_path_converter/device.hpp b/utils/libnt_path_converter/include/libnt_path_converter/device.hpp
new file mode 100644
index 0000000..783bf73
--- /dev/null
+++ b/utils/libnt_path_converter/include/libnt_path_converter/device.hpp
@@ -0,0 +1,24 @@
+/**
+ * \file
+ * \author Egor Tensin <Egor.Tensin@gmail.com>
+ * \date 2015
+ * \copyright This file is licensed under the terms of the MIT License.
+ * See LICENSE.txt for details.
+ */
+
+#pragma once
+
+#include "libservice/interface.hpp"
+
+#include <string>
+
+namespace libnt_path_converter
+{
+ class Device : libservice::Device
+ {
+ public:
+ Device();
+
+ std::wstring convert_nt_path(const std::wstring&);
+ };
+}