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