pub trait ICreateProcessInputs_Impl: Sized {
    // Required methods
    fn GetCreateFlags(&self) -> Result<u32>;
    fn SetCreateFlags(&self, dwcreationflags: u32) -> Result<()>;
    fn AddCreateFlags(&self, dwcreationflags: u32) -> Result<()>;
    fn SetHotKey(&self, whotkey: u16) -> Result<()>;
    fn AddStartupFlags(&self, dwstartupinfoflags: u32) -> Result<()>;
    fn SetTitle(&self, psztitle: &PCWSTR) -> Result<()>;
    fn SetEnvironmentVariable(
        &self,
        pszname: &PCWSTR,
        pszvalue: &PCWSTR
    ) -> Result<()>;
}

Required Methods§

fn GetCreateFlags(&self) -> Result<u32>

fn SetCreateFlags(&self, dwcreationflags: u32) -> Result<()>

fn AddCreateFlags(&self, dwcreationflags: u32) -> Result<()>

fn SetHotKey(&self, whotkey: u16) -> Result<()>

fn AddStartupFlags(&self, dwstartupinfoflags: u32) -> Result<()>

fn SetTitle(&self, psztitle: &PCWSTR) -> Result<()>

fn SetEnvironmentVariable( &self, pszname: &PCWSTR, pszvalue: &PCWSTR ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§