windows_winmd 0.3.1

Winmd parser the windows crate
Documentation
//! A Windows Metadata (winmd) parser
mod file;
pub mod parsed;
mod traits;
mod type_reader;
mod workspace;

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