Macro call

Source
macro_rules! call {
    ($obj:expr, $name:ident($($arg:expr),*)) => { ... };
}
Expand description

Call a method on the COM object

ยงExample

use variant_rs::call;
let x = call!(com_object, SomeMethod(10, "hello"))?;