Struct libc::types::os::arch::extra::STARTUPINFO [] [src]

pub struct STARTUPINFO {
    pub cb: DWORD,
    pub lpReserved: LPWSTR,
    pub lpDesktop: LPWSTR,
    pub lpTitle: LPWSTR,
    pub dwX: DWORD,
    pub dwY: DWORD,
    pub dwXSize: DWORD,
    pub dwYSize: DWORD,
    pub dwXCountChars: DWORD,
    pub dwYCountCharts: DWORD,
    pub dwFillAttribute: DWORD,
    pub dwFlags: DWORD,
    pub wShowWindow: WORD,
    pub cbReserved2: WORD,
    pub lpReserved2: LPBYTE,
    pub hStdInput: HANDLE,
    pub hStdOutput: HANDLE,
    pub hStdError: HANDLE,
}

Fields

cb: DWORD lpReserved: LPWSTR lpDesktop: LPWSTR lpTitle: LPWSTR dwX: DWORD dwY: DWORD dwXSize: DWORD dwYSize: DWORD dwXCountChars: DWORD dwYCountCharts: DWORD dwFillAttribute: DWORD dwFlags: DWORD wShowWindow: WORD cbReserved2: WORD lpReserved2: LPBYTE hStdInput: HANDLE hStdOutput: HANDLE hStdError: HANDLE

Trait Implementations

impl Clone for STARTUPINFO
[src]

fn clone(&self) -> STARTUPINFO

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for STARTUPINFO
[src]