| ... | @@ -2,7 +2,7 @@ const std = @import("std"); | ... | @@ -2,7 +2,7 @@ const std = @import("std"); |
| 2 | const uefi = std.os.uefi; | 2 | const uefi = std.os.uefi; |
| 3 | const Status = uefi.Status; | 3 | const Status = uefi.Status; |
| 4 | | 4 | |
| 5 | const EfiBlockMedia = extern struct { | 5 | pub 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, |
| 8 | | 8 | |
| ... | @@ -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 | }; |
| 40 | | 40 | |
| 41 | const BlockIoProtocol = extern struct { | 41 | pub const BlockIoProtocol = extern struct { |
| 42 | const Self = @This(); | 42 | const Self = @This(); |
| 43 | | 43 | |
| 44 | revision: u64, | 44 | revision: u64, |