pub trait IConsole2_Impl: Sized + IConsole_Impl {
    // Required methods
    fn Expand(&self, hitem: isize, bexpand: BOOL) -> Result<()>;
    fn IsTaskpadViewPreferred(&self) -> Result<()>;
    fn SetStatusText(&self, pszstatustext: &PCWSTR) -> Result<()>;
}

Required Methods§

fn Expand(&self, hitem: isize, bexpand: BOOL) -> Result<()>

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

fn SetStatusText(&self, pszstatustext: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§