pub trait IMFPMPServer_Impl: Sized {
    // Required methods
    fn LockProcess(&self) -> Result<()>;
    fn UnlockProcess(&self) -> Result<()>;
    fn CreateObjectByCLSID(
        &self,
        clsid: *const GUID,
        riid: *const GUID,
        ppobject: *mut *mut c_void
    ) -> Result<()>;
}

Required Methods§

fn LockProcess(&self) -> Result<()>

fn UnlockProcess(&self) -> Result<()>

fn CreateObjectByCLSID( &self, clsid: *const GUID, riid: *const GUID, ppobject: *mut *mut c_void ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§