1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use winapi::um::ocidl::IPropertyBag2; use wio::com::ComPtr; pub mod proptype; #[repr(transparent)] #[derive(ComWrapper)] #[com(debug)] pub struct PropertyBag2 { ptr: ComPtr<IPropertyBag2>, } impl PropertyBag2 { }