com 0.6.0

Utilities for implementing COM Client and Servers
Documentation
1
2
3
4
5
6
7
8
9
10
11
use com::interfaces;

interfaces! {
    #[uuid("cc2d05c7-7d20-4ccb-ad75-1e7fb7c77254")]
    pub unsafe interface LoneInterface {
        unsafe fn do_something(&self);
        unsafe fn do_other_thing(&self);
    }
}

fn main() {}