mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13: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 Status = uefi.Status;
|
||||
|
||||
const EfiBlockMedia = extern struct {
|
||||
pub const EfiBlockMedia = extern struct {
|
||||
/// The current media ID. If the media changes, this value is changed.
|
||||
media_id: u32,
|
||||
|
||||
@ -38,7 +38,7 @@ const EfiBlockMedia = extern struct {
|
||||
optimal_transfer_length_granularity: u32,
|
||||
};
|
||||
|
||||
const BlockIoProtocol = extern struct {
|
||||
pub const BlockIoProtocol = extern struct {
|
||||
const Self = @This();
|
||||
|
||||
revision: u64,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user