yuffie 0.0.1

A library for creating UEFI applications, libraries, and drivers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: BSD-2-Clause-Patent
// SPDX-FileCopyrightText: 2024 System76, Inc.

//! Configuration Table and Properties Table

use crate::guid::Guid;

#[repr(C)]
pub struct ConfigurationTable {
    pub VendorGuid: Guid,
    pub VendorTable: usize,
}