outlook-mapi 0.2.0

Rust bindings for the Outlook MAPI interface
Documentation
1
2
3
4
5
6
7
use outlook_mapi::Session;

fn main() {
    println!("Trying to logon...");
    let _session = Session::new(true).expect("should be able to init and logon to MAPI");
    println!("Created the session...");
}