aboutsummaryrefslogtreecommitdiff
path: root/examples/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'examples/README.md')
-rw-r--r--examples/README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/README.md b/examples/README.md
index 7d30dee..3ad3cb1 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -2,10 +2,12 @@
Minimal Windows kernel driver written in Rust. [DriverEntry](https://msdn.microsoft.com/en-us/library/windows/hardware/ff544113%28v=vs.85%29.aspx) just prints `hello` and quits immediately.
+
## 02.unload
Simple kernel driver which supports [unloading](https://msdn.microsoft.com/en-us/library/windows/hardware/ff564886%28v=vs.85%29.aspx).
+
## 03.urandom
[devrandom](https://github.com/pravic/ontl/tree/master/samples/devrandom) driver sample which has been ported to Rust.
@@ -13,3 +15,10 @@ Simple kernel driver which supports [unloading](https://msdn.microsoft.com/en-us
It creates `\\.\urandom` device, which can produce random data like `/dev/urandom`, but insecure.
This sample shows how to create a [Device Object](https://msdn.microsoft.com/en-us/library/windows/hardware/ff548014%28v=vs.85%29.aspx), assotiate it with user-mode visible [name](https://msdn.microsoft.com/en-us/library/windows/hardware/ff556420%28v=vs.85%29.aspx) and process [I/O requests](https://msdn.microsoft.com/en-us/library/windows/hardware/ff544248%28v=vs.85%29.aspx) from user-mode applications.
+
+
+### Screenshots
+
+[![Registered device](http://savepic.su/7182468m.png)](http://savepic.su/7182468.png)
+
+[![Communicating](http://savepic.su/7183492m.png)](http://savepic.su/7183492.png)