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


#[repr(C)]
#[derive(Copy, Clone)]
pub struct Decimal {
    pub reserved: u16,
    pub scale: u8,
    pub sign: u8,
    pub high: u32,
    pub low: u64,
}