dcommon 0.3.0-alpha1

Common types and utilities for my collection for DirectX-related crates (dxgi, wic, direct2d, directwrite, direct3d11)
Documentation
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 {
    
}