win-idispatch 0.3.0

This is a rust crate that aims to provide a more ergonomic way of working with idispatch in winapi based projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # win-idispatch
//!
//! This crate is a utility crate to improve the ergonmics of working with
//! IDispatch interfaces with windows COM servers.
mod dispatch;
mod errors;
mod guids;
mod unknown;

pub use dispatch::DispatchInterface;
pub use errors::{Error, HResultError};
pub use unknown::UnknownInterface;