windows::Win32::UI::Shell

Trait IShellPropSheetExt_Impl

pub trait IShellPropSheetExt_Impl: IUnknownImpl {
    // 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<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§