Struct ctru_sys::StartupInfo
source · #[repr(C)]pub struct StartupInfo {
pub priority: c_int,
pub stack_size: u32_,
pub argc: c_int,
pub argv: *mut u16_,
pub envp: *mut u16_,
}
Expand description
Information for the main thread of a process.
Fields§
§priority: c_int
< Priority of the main thread.
stack_size: u32_
< Size of the stack of the main thread.
argc: c_int
< Unused on retail kernel.
argv: *mut u16_
< Unused on retail kernel.
envp: *mut u16_
< Unused on retail kernel.
Trait Implementations§
source§impl Clone for StartupInfo
impl Clone for StartupInfo
source§fn clone(&self) -> StartupInfo
fn clone(&self) -> StartupInfo
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more