win_idispatch/lib.rs
1//! # win-idispatch
2//!
3//! This crate is a utility crate to improve the ergonmics of working with
4//! IDispatch interfaces with windows COM servers.
5mod dispatch;
6mod errors;
7mod guids;
8mod unknown;
9
10pub use dispatch::DispatchInterface;
11pub use errors::{Error, HResultError};
12pub use unknown::UnknownInterface;