use core::ffi::c_void;
use core::ptr;
#[non_exhaustive]
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub struct AppKitHandle {
pub ns_window: *mut c_void,
pub ns_view: *mut c_void,
}
impl AppKitHandle {
pub fn empty() -> Self {
Self {
ns_window: ptr::null_mut(),
ns_view: ptr::null_mut(),
}
}
}