aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-05-13 18:46:26 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-05-13 18:46:26 +0300
commit9ccce7d88327bbf5fe34a8a52f99fcee20626ae2 (patch)
tree599c46344905d0fd9894e56a2962a5763eb89dd1
parentlibservice: add README (diff)
downloadwindows7-drivers-9ccce7d88327bbf5fe34a8a52f99fcee20626ae2.tar.gz
windows7-drivers-9ccce7d88327bbf5fe34a8a52f99fcee20626ae2.zip
libnt_path_converter: add README
Diffstat (limited to '')
-rw-r--r--utils/libnt_path_converter/README.md30
1 files changed, 30 insertions, 0 deletions
diff --git a/utils/libnt_path_converter/README.md b/utils/libnt_path_converter/README.md
new file mode 100644
index 0000000..8d03e5c
--- /dev/null
+++ b/utils/libnt_path_converter/README.md
@@ -0,0 +1,30 @@
+# libnt_path_converter
+
+[nt_path_converter](https://github.com/egor-tensin/windows_drivers/tree/master/src/nt_path_converter) usage examples.
+
+## Usage
+
+### libnt_path_converter.lib
+
+Wraps nt_path_converter's virtual device interface using [libservice](https://github.com/egor-tensin/windows_drivers/tree/master/utils/libservice).
+Include the headers by `#include`ing `include/libnt_path_converter/all.hpp`, which includes all of the other header files.
+
+### 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](https://technet.microsoft.com/en-us/library/bb896657.aspx) utility.
+Usage example (assuming nt_path_converter is already loaded):
+
+ >convert_nt_path.exe \Device\HarddiskVolume2\Windows
+ C:\Windows
+
+## Building
+
+See [Building](https://github.com/egor-tensin/windows_drivers/tree/master/utils#building).
+
+## Licensing
+
+This project is licensed under the terms of the MIT License.
+See [Licensing](https://github.com/egor-tensin/windows_drivers#licensing) for details.