#[repr(C)]pub struct ShellParametersProtocol {
pub argv: *const *const Char16,
pub argc: usize,
pub std_in: ShellFileHandle,
pub std_out: ShellFileHandle,
pub std_err: ShellFileHandle,
}
Fields§
§argv: *const *const Char16
Pointer to a list of arguments.
argc: usize
Number of arguments.
std_in: ShellFileHandle
Handle of the standard input.
std_out: ShellFileHandle
Handle of the standard output.
std_err: ShellFileHandle
Handle of the standard error output.