Skip to main content

winmd/
lib.rs

1//! A Windows Metadata (winmd) parser
2mod file;
3pub mod parsed;
4mod traits;
5mod type_reader;
6
7pub use file::{File, TableIndex};
8pub use parsed::*;
9pub use traits::*;
10pub use type_reader::TypeReader;