mirror of
https://github.com/ziglang/zig.git
synced 2025-12-15 18:53:07 +00:00
std.os.uefi: mark BlockIoProtocol and EfiBlockMedia as public
This commit is contained in:
parent
56b96cd61b
commit
c9f145a50b
@ -2,7 +2,7 @@ const std = @import("std");
|
|||||||
const uefi = std.os.uefi;
|
const uefi = std.os.uefi;
|
||||||
const Status = uefi.Status;
|
const Status = uefi.Status;
|
||||||
|
|
||||||
const EfiBlockMedia = extern struct {
|
pub const EfiBlockMedia = extern struct {
|
||||||
/// The current media ID. If the media changes, this value is changed.
|
/// The current media ID. If the media changes, this value is changed.
|
||||||
media_id: u32,
|
media_id: u32,
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ const EfiBlockMedia = extern struct {
|
|||||||
optimal_transfer_length_granularity: u32,
|
optimal_transfer_length_granularity: u32,
|
||||||
};
|
};
|
||||||
|
|
||||||
const BlockIoProtocol = extern struct {
|
pub const BlockIoProtocol = extern struct {
|
||||||
const Self = @This();
|
const Self = @This();
|
||||||
|
|
||||||
revision: u64,
|
revision: u64,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user