master
 1const uefi = @import("std").os.uefi;
 2const Guid = uefi.Guid;
 3const FileHandle = uefi.FileHandle;
 4
 5pub const ShellParameters = extern struct {
 6    argv: [*][*:0]const u16,
 7    argc: usize,
 8    stdin: FileHandle,
 9    stdout: FileHandle,
10    stderr: FileHandle,
11
12    pub const guid align(8) = Guid{
13        .time_low = 0x752f3136,
14        .time_mid = 0x4e16,
15        .time_high_and_version = 0x4fdc,
16        .clock_seq_high_and_reserved = 0xa2,
17        .clock_seq_low = 0x2a,
18        .node = [_]u8{ 0xe5, 0xf4, 0x68, 0x12, 0xf4, 0xca },
19    };
20};