pub trait ICurrentWorkingDirectory_Impl: Sized {
    // Required methods
    fn GetDirectory(&self, pwzpath: PWSTR, cchsize: u32) -> Result<()>;
    fn SetDirectory(&self, pwzpath: &PCWSTR) -> Result<()>;
}

Required Methods§

fn GetDirectory(&self, pwzpath: PWSTR, cchsize: u32) -> Result<()>

fn SetDirectory(&self, pwzpath: &PCWSTR) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§