aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/um/wrappers/special/nt_path_converter
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2017-04-28 17:48:44 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2017-04-28 17:48:44 +0300
commit040444db8fc48cd4012bc7ec4568f6a9b6143cb3 (patch)
tree82fe63ebc8f4e505d9337345cf67704bd60e9834 /um/wrappers/special/nt_path_converter
parentCMakeLists.txt updates (diff)
downloadwindows7-drivers-040444db8fc48cd4012bc7ec4568f6a9b6143cb3.tar.gz
windows7-drivers-040444db8fc48cd4012bc7ec4568f6a9b6143cb3.zip
nt_path_converter -> nt_namespace
Diffstat (limited to 'um/wrappers/special/nt_path_converter')
-rw-r--r--um/wrappers/special/nt_path_converter/CMakeLists.txt10
-rw-r--r--um/wrappers/special/nt_path_converter/README.md31
-rw-r--r--um/wrappers/special/nt_path_converter/include/libnt_path_converter/all.hpp8
-rw-r--r--um/wrappers/special/nt_path_converter/include/libnt_path_converter/device.hpp21
-rw-r--r--um/wrappers/special/nt_path_converter/src/device.cpp48
-rw-r--r--um/wrappers/special/nt_path_converter/utils/CMakeLists.txt6
-rw-r--r--um/wrappers/special/nt_path_converter/utils/convert_nt_path.cpp26
7 files changed, 0 insertions, 150 deletions
diff --git a/um/wrappers/special/nt_path_converter/CMakeLists.txt b/um/wrappers/special/nt_path_converter/CMakeLists.txt
deleted file mode 100644
index 69f85d0..0000000
--- a/um/wrappers/special/nt_path_converter/CMakeLists.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-project(libnt_path_converter)
-file(GLOB libnt_path_converter_sources "src/*.cpp")
-file(GLOB_RECURSE libnt_path_converter_headers "include/*.hpp")
-add_library(libnt_path_converter
- ${libnt_path_converter_sources}
- ${libnt_path_converter_headers})
-target_link_libraries(libnt_path_converter libservice)
-target_include_directories(libnt_path_converter PUBLIC include/)
-
-add_subdirectory(utils)
diff --git a/um/wrappers/special/nt_path_converter/README.md b/um/wrappers/special/nt_path_converter/README.md
deleted file mode 100644
index b295a80..0000000
--- a/um/wrappers/special/nt_path_converter/README.md
+++ /dev/null
@@ -1,31 +0,0 @@
-nt_path_converter driver utilities
-==================================
-
-[nt_path_converter] driver usage examples.
-
-[nt_path_converter]: ../../../../km/src/special/nt_path_converter
-
-Usage
------
-
-### convert_nt_path.exe
-
- Usage: convert_nt_path.exe [NT_PATH...]
-
-Converts a NT-style path to a DOS-style path.
-The NT namespace can be explored using the [WinObj] utility.
-For example:
-
- > convert_nt_path.exe \Device\HarddiskVolume2\Windows
- C:\Windows
-
-[WinObj]: https://technet.microsoft.com/en-us/library/bb896657.aspx
-
-See also
---------
-
-* [Building]
-* [License]
-
-[Building]: ../../../README.md#building
-[License]: ../../../../README.md#license
diff --git a/um/wrappers/special/nt_path_converter/include/libnt_path_converter/all.hpp b/um/wrappers/special/nt_path_converter/include/libnt_path_converter/all.hpp
deleted file mode 100644
index 474b802..0000000
--- a/um/wrappers/special/nt_path_converter/include/libnt_path_converter/all.hpp
+++ /dev/null
@@ -1,8 +0,0 @@
-// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
-// 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_path_converter/include/libnt_path_converter/device.hpp b/um/wrappers/special/nt_path_converter/include/libnt_path_converter/device.hpp
deleted file mode 100644
index e1d75fb..0000000
--- a/um/wrappers/special/nt_path_converter/include/libnt_path_converter/device.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
-// 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 <string>
-
-namespace libnt_path_converter
-{
- class Device : libservice::Device
- {
- public:
- Device();
-
- std::wstring convert_nt_path(const std::wstring&);
- };
-}
diff --git a/um/wrappers/special/nt_path_converter/src/device.cpp b/um/wrappers/special/nt_path_converter/src/device.cpp
deleted file mode 100644
index 2b5b89a..0000000
--- a/um/wrappers/special/nt_path_converter/src/device.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
-// 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.
-
-#include "libnt_path_converter/device.hpp"
-
-#include "libservice/all.hpp"
-
-#include <Windows.h>
-
-#include <string>
-#include <vector>
-
-namespace libnt_path_converter
-{
- namespace
- {
- const auto device_path = "\\\\.\\nt_path_converter";
- const auto control_code = CTL_CODE(0x8000, 0x800, METHOD_BUFFERED, FILE_ANY_ACCESS);
- }
-
- Device::Device()
- : libservice::Device(libservice::Device::open(device_path))
- { }
-
- std::wstring Device::convert_nt_path(const std::wstring& src)
- {
- const auto in_buf = src.c_str();
- const auto in_buf_size = (src.size() + 1) * sizeof(wchar_t);
-
- const auto nbreq = get_required_output_size(
- control_code,
- in_buf,
- in_buf_size);
-
- std::vector<unsigned char> output(nbreq);
-
- send_control_code(
- control_code,
- in_buf,
- in_buf_size,
- output.data(),
- nbreq);
-
- return reinterpret_cast<wchar_t*>(output.data());
- }
-}
diff --git a/um/wrappers/special/nt_path_converter/utils/CMakeLists.txt b/um/wrappers/special/nt_path_converter/utils/CMakeLists.txt
deleted file mode 100644
index 9c5254b..0000000
--- a/um/wrappers/special/nt_path_converter/utils/CMakeLists.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-add_executable(convert_nt_path convert_nt_path.cpp)
-target_link_libraries(convert_nt_path PRIVATE libnt_path_converter)
-if(MINGW)
- target_compile_options(convert_nt_path PRIVATE -municode)
- target_link_libraries(convert_nt_path PRIVATE -municode)
-endif()
diff --git a/um/wrappers/special/nt_path_converter/utils/convert_nt_path.cpp b/um/wrappers/special/nt_path_converter/utils/convert_nt_path.cpp
deleted file mode 100644
index 9d25242..0000000
--- a/um/wrappers/special/nt_path_converter/utils/convert_nt_path.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com>
-// 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.
-
-#include "libnt_path_converter/all.hpp"
-
-#include <exception>
-#include <iostream>
-
-int wmain(int argc, wchar_t* argv[])
-{
- try
- {
- libnt_path_converter::Device dev;
- for (int i = 1; i < argc; ++i)
- std::wcout << dev.convert_nt_path(argv[i]) << L"\n";
- }
- catch (const std::exception& e)
- {
- std::cerr << e.what() << "\n";
- return 1;
- }
-
- return 0;
-}