windows-core 0.100.0

Core type support for COM and Windows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod array;
pub use array::*;

impl Param<PCWSTR> for &BSTR {
    unsafe fn param(self) -> ParamValue<PCWSTR> {
        ParamValue::Owned(PCWSTR(self.as_ptr()))
    }
}

impl TypeKind for BSTR {
    type TypeKind = CloneType;
}