Skip to main content

dotnetdll/binary/
mod.rs

1#[macro_use]
2mod utils {
3    macro_rules! throw {
4        ($($arg:tt)*) => {
5            return Err(scroll::Error::Custom(format!($($arg)*)))
6        }
7    }
8}
9
10pub mod cli;
11pub mod heap;
12pub mod il;
13pub mod metadata;
14pub mod method;
15pub mod signature;
16pub mod stream;