diff options
Diffstat (limited to '')
-rw-r--r-- | utils/README.md | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/utils/README.md b/utils/README.md index c69617e..7dcf890 100644 --- a/utils/README.md +++ b/utils/README.md @@ -1,24 +1,30 @@ -# Service management utilities +# Driver utilities -Utilities used to manage (load, start, stop and unload) and communicate with -drivers via virtual devices. -Usage examples of some of the drivers in this repository are also included. +A few usage examples are provided along with the drivers. +Those include: -* [libservice](libservice) — a simple service management library. - Also includes means of communicating with a driver via virtual devices. -* [libnt_path_converter](libnt_path_converter) — - [nt_path_converter](../src/nt_path_converter) usage examples. -* [libtest](libtest) — [test](../src/test) usage examples. +* [libservice]: utilities to easily install/start/stop/uninstall drivers + (using Windows services), +* [libtest]: [test] driver usage examples, +* [libnt_path_converter]: [nt_path_converter] usage examples. ## Building -I've used the compiler shipped with Visual Studio Express 2013 with Update 4 -for Windows Desktop. +To build the utilities: -You can generate the solution windows7_drivers_utils.sln using CMake and build -it using Visual Studio. +1. generate the solution windows7_drivers_utils.sln using CMake, +2. build the solution using Visual Studio. -## Licensing +## License This project is licensed under the terms of the MIT License. -See [Licensing](../README.md#licensing) for details. +See [License] for details. + + + +[license]: ../README.md#license +[libservice]: libservice/README.md +[libtest]: libtest/README.md +[test]: ../src/test +[libnt_path_converter]: libnt_path_converter/README.md +[nt_path_converter]: ../src/nt_path_converter |