Documentation
1
2
3
4
5
6
7
8
9
10
//! A Windows Metadata (winmd) parser
mod file;
pub mod parsed;
mod traits;
mod type_reader;

pub use file::{File, TableIndex};
pub use parsed::*;
pub use traits::*;
pub use type_reader::TypeReader;