pub trait IGlobalInterfaceTable_Impl: Sized {
    // Required methods
    fn RegisterInterfaceInGlobal(
        &self,
        punk: Option<&IUnknown>,
        riid: *const GUID
    ) -> Result<u32>;
    fn RevokeInterfaceFromGlobal(&self, dwcookie: u32) -> Result<()>;
    fn GetInterfaceFromGlobal(
        &self,
        dwcookie: u32,
        riid: *const GUID,
        ppv: *mut *mut c_void
    ) -> Result<()>;
}

Required Methods§

fn RegisterInterfaceInGlobal( &self, punk: Option<&IUnknown>, riid: *const GUID ) -> Result<u32>

fn RevokeInterfaceFromGlobal(&self, dwcookie: u32) -> Result<()>

fn GetInterfaceFromGlobal( &self, dwcookie: u32, riid: *const GUID, ppv: *mut *mut c_void ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§