pub trait IEnumACString_Impl: Sized + IEnumString_Impl {
    // Required methods
    fn NextItem(
        &self,
        pszurl: PWSTR,
        cchmax: u32,
        pulsortindex: *mut u32
    ) -> Result<()>;
    fn SetEnumOptions(&self, dwoptions: u32) -> Result<()>;
    fn GetEnumOptions(&self) -> Result<u32>;
}

Required Methods§

fn NextItem( &self, pszurl: PWSTR, cchmax: u32, pulsortindex: *mut u32 ) -> Result<()>

fn SetEnumOptions(&self, dwoptions: u32) -> Result<()>

fn GetEnumOptions(&self) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§