aboutsummaryrefslogtreecommitdiff
path: root/lib/std/os/uefi/protocols/edid_discovered_protocol.zig
blob: f68b0fa3d66c6b3a0db5ce0eda17ea807804389e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const uefi = @import("std").os.uefi;
const Guid = uefi.Guid;

/// UEFI Specification, Version 2.8, 12.9
pub const EdidDiscoveredProtocol = extern struct {
    size_of_edid: u32,
    edid: ?[*]u8,

    pub const guid align(8) = Guid{
        .time_low = 0x1c0c34f6,
        .time_mid = 0xd380,
        .time_high_and_version = 0x41fa,
        .clock_seq_high_and_reserved = 0xa0,
        .clock_seq_low = 0x49,
        .node = [_]u8{ 0x8a, 0xd0, 0x6c, 0x1a, 0x66, 0xaa },
    };
};