blob: 905a47a8d8db3cb6410249543688a6a0414fe15a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
Driver utilities
================
A couple of usage examples are included along with the drivers.
* [libservice]: Utilities to load/unload the drivers.
* [libsimple]: [simple] driver usage examples.
* [libnt_namespace]: [nt_namespace] driver usage examples.
[libservice]: service/README.md
[libsimple]: wrappers/simple/README.md
[simple]: ../km/src/simple
[libnt_namespace]: wrappers/special/nt_namespace/README.md
[nt_namespace]: ../km/src/special/nt_namespace
Building
--------
Create the build files using CMake and build using Visual Studio.
For example, using Visual Studio 2013 Update 4 for Windows Desktop (targetting
x86):
> cd
C:\workspace\build\windows7-drivers\um
> cmake -G "Visual Studio 12 2013" C:\workspace\personal\windows7-drivers\um
...
> cmake --build . --config release
...
|