aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/utils
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-06-25 05:00:42 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-06-25 05:00:42 +0300
commit7430065810eada05a168874bb28e9972f7ecea76 (patch)
tree254bc665d9573c6cb7439c0f05886de53a573a2d /utils
parentREADME updates (diff)
downloadwindows7-drivers-7430065810eada05a168874bb28e9972f7ecea76.tar.gz
windows7-drivers-7430065810eada05a168874bb28e9972f7ecea76.zip
README updates
Diffstat (limited to '')
-rw-r--r--utils/README.md11
-rw-r--r--utils/libnt_path_converter/README.md9
-rw-r--r--utils/libservice/README.md9
-rw-r--r--utils/libtest/README.md31
4 files changed, 40 insertions, 20 deletions
diff --git a/utils/README.md b/utils/README.md
index eed64ab..b03c4c1 100644
--- a/utils/README.md
+++ b/utils/README.md
@@ -1,4 +1,5 @@
-# Driver utilities
+Driver utilities
+================
A couple of usage examples are included along with the drivers.
@@ -12,7 +13,8 @@ A couple of usage examples are included along with the drivers.
[libnt_path_converter]: libnt_path_converter/README.md
[nt_path_converter]: ../src/nt_path_converter
-## Building the utilities
+Building the utilities
+----------------------
Create the build files using CMake and build using Visual Studio.
@@ -28,8 +30,9 @@ x86):
> msbuild windows7_drivers_utils.sln
...
-## License
+See also
+--------
-See [License].
+* [License]
[License]: ../README.md#license
diff --git a/utils/libnt_path_converter/README.md b/utils/libnt_path_converter/README.md
index b3cde53..b5830d6 100644
--- a/utils/libnt_path_converter/README.md
+++ b/utils/libnt_path_converter/README.md
@@ -1,10 +1,12 @@
-# nt_path_converter driver utilities
+nt_path_converter driver utilities
+==================================
[nt_path_converter] driver usage examples.
[nt_path_converter]: ../../src/nt_path_converter
-## Usage
+Usage
+-----
### convert_nt_path.exe
@@ -19,7 +21,8 @@ For example:
[WinObj]: https://technet.microsoft.com/en-us/library/bb896657.aspx
-## See also
+See also
+--------
* [Building the utilities]
* [License]
diff --git a/utils/libservice/README.md b/utils/libservice/README.md
index 2727f31..f9fb601 100644
--- a/utils/libservice/README.md
+++ b/utils/libservice/README.md
@@ -1,8 +1,10 @@
-# Driver management utilities
+Driver management utilities
+===========================
Utilities to load/unload the drivers.
-## Usage
+Usage
+-----
### install_service.exe
@@ -41,7 +43,8 @@ The same as
> sc delete NAME
-## See also
+See also
+--------
* [Building the utilities]
* [License]
diff --git a/utils/libtest/README.md b/utils/libtest/README.md
index ddab9ce..0257c71 100644
--- a/utils/libtest/README.md
+++ b/utils/libtest/README.md
@@ -1,29 +1,40 @@
-# test driver utilities
+test driver utilities
+=====================
[test] driver usage examples.
[test]: ../../src/test
-## Usage
+Usage
+-----
### exchange_ints.exe
- Usage: exchange_ints.exe N
+```
+Usage: exchange_ints.exe N
+```
Parses its argument as an `unsigned int` and exchanges it with the one stored
in [test] driver's memory.
For example:
- > exchange_ints.exe 1
- 42
+```
+> exchange_ints.exe 1
+42
+```
- > exchange_ints.exe 32
- 1
+```
+> exchange_ints.exe 32
+1
+```
- > exchange_ints.exe 100500
- 32
+```
+> exchange_ints.exe 100500
+32
+```
-## See also
+See also
+--------
* [Building the utilities]
* [License]