1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//! All of the safe wrappers added by this crate, as well as any macros, are exported from the root
//! module of this crate.
//!
//! All of the nested, unsafe types from
//! [outlook-mapi-sys](https://crates.io/crates/outlook-mapi-sys) are re-exported as the `sys`
//! module in this crate.

/// Re-export all of the unsafe bindings from the
/// [outlook-mapi-sys](https://crates.io/crates/outlook-mapi-sys) crate.
pub mod sys {
    pub use outlook_mapi_sys::Microsoft::Office::Outlook::MAPI::Win32::*;
}

pub mod mapi_initialize;
pub mod mapi_logon;
pub mod mapi_ptr;
pub mod prop_tag;
pub mod prop_value;
pub mod row;
pub mod row_set;
pub mod sized_types;

pub use mapi_initialize::*;
pub use mapi_logon::*;
pub use mapi_ptr::*;
pub use prop_tag::*;
pub use prop_value::*;
pub use row::*;
pub use row_set::*;
pub use sized_types::*;