mcom 0.1.5

MaulingMonkey's COM wrappers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! [Crate Features](features),
//! [Known Soundness Holes & Undefined Behavior Bait](soundness)

use crate::*;
use core::ops::Deref;

macro_rules! docs {
    ( $($ident:ident),+ $(,)? ) => {$(
        #[doc = include_str!(concat!(stringify!($ident), ".md"))] pub mod $ident {}
    )+};
}

docs! {
    features,
    soundness,
}