pub trait ICustomDestinationList_Impl: Sized {
    // Required methods
    fn SetAppID(&self, pszappid: &PCWSTR) -> Result<()>;
    fn BeginList(
        &self,
        pcminslots: *mut u32,
        riid: *const GUID,
        ppv: *mut *mut c_void
    ) -> Result<()>;
    fn AppendCategory(
        &self,
        pszcategory: &PCWSTR,
        poa: Option<&IObjectArray>
    ) -> Result<()>;
    fn AppendKnownCategory(&self, category: KNOWNDESTCATEGORY) -> Result<()>;
    fn AddUserTasks(&self, poa: Option<&IObjectArray>) -> Result<()>;
    fn CommitList(&self) -> Result<()>;
    fn GetRemovedDestinations(
        &self,
        riid: *const GUID,
        ppv: *mut *mut c_void
    ) -> Result<()>;
    fn DeleteList(&self, pszappid: &PCWSTR) -> Result<()>;
    fn AbortList(&self) -> Result<()>;
}

Required Methods§

fn SetAppID(&self, pszappid: &PCWSTR) -> Result<()>

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

fn AppendCategory( &self, pszcategory: &PCWSTR, poa: Option<&IObjectArray> ) -> Result<()>

fn AppendKnownCategory(&self, category: KNOWNDESTCATEGORY) -> Result<()>

fn AddUserTasks(&self, poa: Option<&IObjectArray>) -> Result<()>

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

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

fn DeleteList(&self, pszappid: &PCWSTR) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§