pub trait IShellPropSheetExt_Impl: Sized {
    // Required methods
    fn AddPages(
        &self,
        pfnaddpage: LPFNSVADDPROPSHEETPAGE,
        lparam: LPARAM
    ) -> Result<()>;
    fn ReplacePage(
        &self,
        upageid: u32,
        pfnreplacewith: LPFNSVADDPROPSHEETPAGE,
        lparam: LPARAM
    ) -> Result<()>;
}

Required Methods§

fn AddPages( &self, pfnaddpage: LPFNSVADDPROPSHEETPAGE, lparam: LPARAM ) -> Result<()>

fn ReplacePage( &self, upageid: u32, pfnreplacewith: LPFNSVADDPROPSHEETPAGE, lparam: LPARAM ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§