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