pub trait IOpenControlPanel_Impl: Sized {
    // Required methods
    fn Open(
        &self,
        pszname: &PCWSTR,
        pszpage: &PCWSTR,
        punksite: Option<&IUnknown>
    ) -> Result<()>;
    fn GetPath(
        &self,
        pszname: &PCWSTR,
        pszpath: PWSTR,
        cchpath: u32
    ) -> Result<()>;
    fn GetCurrentView(&self) -> Result<CPVIEW>;
}

Required Methods§

fn Open( &self, pszname: &PCWSTR, pszpage: &PCWSTR, punksite: Option<&IUnknown> ) -> Result<()>

fn GetPath(&self, pszname: &PCWSTR, pszpath: PWSTR, cchpath: u32) -> Result<()>

fn GetCurrentView(&self) -> Result<CPVIEW>

Object Safety§

This trait is not object safe.

Implementors§