pub trait IComponentUtil_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn InstallComponent(
        &self,
        bstrdllfile: &BSTR,
        bstrtypelibfile: &BSTR,
        bstrproxystubdllfile: &BSTR
    ) -> Result<()>;
    fn ImportComponent(&self, bstrclsid: &BSTR) -> Result<()>;
    fn ImportComponentByName(&self, bstrprogid: &BSTR) -> Result<()>;
    fn GetCLSIDs(
        &self,
        bstrdllfile: &BSTR,
        bstrtypelibfile: &BSTR,
        aclsids: *mut *mut SAFEARRAY
    ) -> Result<()>;
}

Required Methods§

fn InstallComponent( &self, bstrdllfile: &BSTR, bstrtypelibfile: &BSTR, bstrproxystubdllfile: &BSTR ) -> Result<()>

fn ImportComponent(&self, bstrclsid: &BSTR) -> Result<()>

fn ImportComponentByName(&self, bstrprogid: &BSTR) -> Result<()>

fn GetCLSIDs( &self, bstrdllfile: &BSTR, bstrtypelibfile: &BSTR, aclsids: *mut *mut SAFEARRAY ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§