use super::*;
#[repr(transparent)]
pub struct IUnknown(core::ptr::NonNull<core::ffi::c_void>);
#[doc(hidden)]
#[repr(C)]
pub struct IUnknownVtbl(pub unsafe extern "system" fn(this: RawPtr, iid: *const GUID, interface: *mut RawPtr) -> HRESULT, pub unsafe extern "system" fn(this: RawPtr) -> u32, pub unsafe extern "system" fn(this: RawPtr) -> u32);
unsafe impl Interface for IUnknown {
type Vtable = IUnknownVtbl;
const IID: GUID = GUID::from_u128(0x00000000_0000_0000_c000_000000000046);
}
impl Clone for IUnknown {
fn clone(&self) -> Self {
unsafe {
(self.vtable().1)(core::mem::transmute_copy(self)); }
Self(self.0)
}
}
impl Drop for IUnknown {
fn drop(&mut self) {
unsafe {
(self.vtable().2)(core::mem::transmute_copy(self)); }
}
}
impl PartialEq for IUnknown {
fn eq(&self, other: &Self) -> bool {
self.cast::<IUnknown>().unwrap().0 == other.cast::<IUnknown>().unwrap().0
}
}
impl Eq for IUnknown {}
impl core::fmt::Debug for IUnknown {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_tuple("IUnknown").field(&self.0).finish()
}
}