uefi_raw/table/configuration.rs
1// SPDX-License-Identifier: MIT OR Apache-2.0
2
3use crate::Guid;
4use core::ffi::c_void;
5
6/// UEFI configuration table.
7///
8/// Each table is uniquely identified by a GUID. The type of data pointed to by
9/// `vendor_table`, as well as whether that address is physical or virtual,
10/// depends on the GUID.
11#[derive(Debug, Eq, PartialEq)]
12#[repr(C)]
13pub struct ConfigurationTable {
14 pub vendor_guid: Guid,
15 pub vendor_table: *mut c_void,
16}