From 24af17846d14b290aa1d90e37e98c4cbe9e173e1 Mon Sep 17 00:00:00 2001 From: pravic Date: Tue, 12 Apr 2016 18:12:52 +0300 Subject: add winapi-km-rs docs --- doc/src/km/file_object.rs.html | 138 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 138 insertions(+) create mode 100644 doc/src/km/file_object.rs.html (limited to 'doc/src/km/file_object.rs.html') diff --git a/doc/src/km/file_object.rs.html b/doc/src/km/file_object.rs.html new file mode 100644 index 0000000..846fb26 --- /dev/null +++ b/doc/src/km/file_object.rs.html @@ -0,0 +1,138 @@ + + + + + + + + + + file_object.rs.html -- source + + + + + + + + + + + + + + + + + +
 1
+ 2
+ 3
+ 4
+ 5
+ 6
+ 7
+ 8
+ 9
+10
+11
+12
+13
+14
+15
+
+//! File Object.
+
+use ::device_object::PDEVICE_OBJECT;
+
+pub type PFILE_OBJECT = *mut FILE_OBJECT;
+
+/// The `FILE_OBJECT` structure is used by the system to represent a file object.
+#[repr(C)]
+pub struct FILE_OBJECT
+{
+	Type: u16,
+	Size: u16,
+	DeviceObject: PDEVICE_OBJECT,
+	// ...
+}
+
+
+ + + + + + + + + + + + + + + \ No newline at end of file -- cgit v1.2.3