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
32
33
34
35
36
37
38
//! This crate contains definitions and some parsing logic for structures that are common across windows formats.
//!
//! [Documentation](https://docs.rs/winstructs)
//!
//! # API
//! Generally, structs in this crate will have either `from_reader`, if they can be read from a
//! `Read` instance, or `from_stream`, if reading them requires `Read + Seek`.
//!
//! `from_buffer` is also provided as convenience, but it generally just builds a cursor and uses
//! either `from_reader` or `from_stream` internally.
//!
// Don't allow dbg! prints in release.
use ;
extern crate num_derive;
pub
pub