com_ptr

Crates.iocom_ptr
lib.rscom_ptr
version0.2.1
sourcesrc
created_at2019-06-08 15:33:30.211764
updated_at2021-02-25 14:15:51.477649
descriptionA smart pointer for Windows COM Interfaces
homepage
repositoryhttps://github.com/LNSEAB/com_ptr
max_upload_size
id139830
size21,412
LNSEAB (LNSEAB)

documentation

README

com_ptr

A smart pointer for Windows COM Interfaces

Example

Creates a ComPtr from CreateDXGIFactory1 function.

use winapi::shared::dxgi::*;
use winapi::um::winnt::HRESULT;
use winapi::Interface;
use com_ptr::{ComPtr, hresult};

fn create_dxgi_factory<T: Interface>() -> Result<ComPtr<T>, HRESULT> {
    ComPtr::new(|| {
        let mut obj = std::ptr::null_mut();
        let res = unsafe { CreateDXGIFactory1(&T::uuidof(), &mut obj) };
        hresult(obj as *mut T, res)
    })
}

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 26

cargo fmt