authorgravatar for ybham6@gmail.comYusuf Bham <ybham6@gmail.com> 2022-09-09 05:35:32-04:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2022-09-09 16:48:54+03:00
logc9f145a50b11e54b72b2fccd04384bbb856446cf
tree66a18b928514acb6710f7ba0990eaa600909a6d1
parent56b96cd61b0bdb7f5b11a5283fe6dd5b585ef10e

std.os.uefi: mark BlockIoProtocol and EfiBlockMedia as public


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/os/uefi/protocols/block_io_protocol.zig+2-2
...@@ -2,7 +2,7 @@ const std = @import("std");...@@ -2,7 +2,7 @@ const std = @import("std");
2const uefi = std.os.uefi;2const uefi = std.os.uefi;
3const Status = uefi.Status;3const Status = uefi.Status;
44
5const EfiBlockMedia = extern struct {5pub const EfiBlockMedia = extern struct {
6 /// The current media ID. If the media changes, this value is changed.6 /// The current media ID. If the media changes, this value is changed.
7 media_id: u32,7 media_id: u32,
88
...@@ -38,7 +38,7 @@ const EfiBlockMedia = extern struct {...@@ -38,7 +38,7 @@ const EfiBlockMedia = extern struct {
38 optimal_transfer_length_granularity: u32,38 optimal_transfer_length_granularity: u32,
39};39};
4040
41const BlockIoProtocol = extern struct {41pub const BlockIoProtocol = extern struct {
42 const Self = @This();42 const Self = @This();
4343
44 revision: u64,44 revision: u64,