pub trait IMachineGlobalObjectTable_Impl: Sized {
    // Required methods
    fn RegisterObject(
        &self,
        clsid: *const GUID,
        identifier: &PCWSTR,
        object: Option<&IUnknown>
    ) -> Result<MachineGlobalObjectTableRegistrationToken>;
    fn GetObject(
        &self,
        clsid: *const GUID,
        identifier: &PCWSTR,
        riid: *const GUID,
        ppv: *mut *mut c_void
    ) -> Result<()>;
    fn RevokeObject(
        &self,
        token: MachineGlobalObjectTableRegistrationToken
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§