diff options
| author | Yusuf Bham <ybham6@gmail.com> | 2022-09-09 05:35:32 -0400 |
|---|---|---|
| committer | Veikka Tuominen <git@vexu.eu> | 2022-09-09 16:48:54 +0300 |
| commit | c9f145a50b11e54b72b2fccd04384bbb856446cf (patch) | |
| tree | 66a18b928514acb6710f7ba0990eaa600909a6d1 /lib/std | |
| parent | 56b96cd61b0bdb7f5b11a5283fe6dd5b585ef10e (diff) | |
| download | zig-c9f145a50b11e54b72b2fccd04384bbb856446cf.tar.gz zig-c9f145a50b11e54b72b2fccd04384bbb856446cf.zip | |
std.os.uefi: mark BlockIoProtocol and EfiBlockMedia as public
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/os/uefi/protocols/block_io_protocol.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/os/uefi/protocols/block_io_protocol.zig b/lib/std/os/uefi/protocols/block_io_protocol.zig index 938eb930da..45b60eb59e 100644 --- a/lib/std/os/uefi/protocols/block_io_protocol.zig +++ b/lib/std/os/uefi/protocols/block_io_protocol.zig @@ -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, |
