miniblink 0.4.0

Rust bindings to mininlink49
Documentation
1
2
3
4
5
6
7
8
9
use std::ffi::c_void;

/// The window handle.
#[repr(transparent)]
pub struct WindowHandle {
    pub(crate) inner: *mut c_void,
}

unsafe impl Send for WindowHandle {}