pub trait ISyncProviderConfigUI_Impl: Sized {
    // Required methods
    fn Init(
        &self,
        pguidinstanceid: *const GUID,
        pguidcontenttype: *const GUID,
        pconfigurationproperties: Option<&IPropertyStore>
    ) -> Result<()>;
    fn GetRegisteredProperties(&self) -> Result<IPropertyStore>;
    fn CreateAndRegisterNewSyncProvider(
        &self,
        hwndparent: HWND,
        punkcontext: Option<&IUnknown>
    ) -> Result<ISyncProviderInfo>;
    fn ModifySyncProvider(
        &self,
        hwndparent: HWND,
        punkcontext: Option<&IUnknown>,
        pproviderinfo: Option<&ISyncProviderInfo>
    ) -> Result<()>;
}

Required Methods§

fn Init( &self, pguidinstanceid: *const GUID, pguidcontenttype: *const GUID, pconfigurationproperties: Option<&IPropertyStore> ) -> Result<()>

fn GetRegisteredProperties(&self) -> Result<IPropertyStore>

fn CreateAndRegisterNewSyncProvider( &self, hwndparent: HWND, punkcontext: Option<&IUnknown> ) -> Result<ISyncProviderInfo>

fn ModifySyncProvider( &self, hwndparent: HWND, punkcontext: Option<&IUnknown>, pproviderinfo: Option<&ISyncProviderInfo> ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§