| ... | @@ -127,15 +127,6 @@ pub const FileProtocol = extern struct { | ... | @@ -127,15 +127,6 @@ pub const FileProtocol = extern struct { |
| 127 | return self._flush(self); | 127 | return self._flush(self); |
| 128 | } | 128 | } |
| 129 | | 129 | |
| 130 | pub const guid align(8) = Guid{ | | |
| 131 | .time_low = 0x09576e92, | | |
| 132 | .time_mid = 0x6d3f, | | |
| 133 | .time_high_and_version = 0x11d2, | | |
| 134 | .clock_seq_high_and_reserved = 0x8e, | | |
| 135 | .clock_seq_low = 0x39, | | |
| 136 | .node = [_]u8{ 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b }, | | |
| 137 | }; | | |
| 138 | | | |
| 139 | pub const efi_file_mode_read: u64 = 0x0000000000000001; | 130 | pub const efi_file_mode_read: u64 = 0x0000000000000001; |
| 140 | pub const efi_file_mode_write: u64 = 0x0000000000000002; | 131 | pub const efi_file_mode_write: u64 = 0x0000000000000002; |
| 141 | pub const efi_file_mode_create: u64 = 0x8000000000000000; | 132 | pub const efi_file_mode_create: u64 = 0x8000000000000000; |
| ... | @@ -171,4 +162,13 @@ pub const FileInfo = extern struct { | ... | @@ -171,4 +162,13 @@ pub const FileInfo = extern struct { |
| 171 | pub const efi_file_directory: u64 = 0x0000000000000010; | 162 | pub const efi_file_directory: u64 = 0x0000000000000010; |
| 172 | pub const efi_file_archive: u64 = 0x0000000000000020; | 163 | pub const efi_file_archive: u64 = 0x0000000000000020; |
| 173 | pub const efi_file_valid_attr: u64 = 0x0000000000000037; | 164 | pub const efi_file_valid_attr: u64 = 0x0000000000000037; |
| | 165 | |
| | 166 | pub const guid align(8) = Guid{ |
| | 167 | .time_low = 0x09576e92, |
| | 168 | .time_mid = 0x6d3f, |
| | 169 | .time_high_and_version = 0x11d2, |
| | 170 | .clock_seq_high_and_reserved = 0x8e, |
| | 171 | .clock_seq_low = 0x39, |
| | 172 | .node = [_]u8{ 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b }, |
| | 173 | }; |
| 174 | }; | 174 | }; |