| author | |
| committer | |
| log | b382119c028589a16ab5ab2873bdb3f1e891652a |
| tree | b619d360d05aa686a72f927debeff5ed3f2b8772 |
| parent | a974198b949ee8f04accd12594a95b6005652352 |
Just makes this a bit nicer to work with since those fields only have 1 intended value.1 files changed, 4 insertions(+), 2 deletions(-)
lib/std/coff.zig+4-2| ... | ... | @@ -1350,8 +1350,10 @@ pub const Strtab = struct { |
| 1350 | 1350 | }; |
| 1351 | 1351 | |
| 1352 | 1352 | pub const ImportHeader = extern struct { |
| 1353 | sig1: IMAGE.FILE.MACHINE, | |
| 1354 | sig2: u16, | |
| 1353 | /// Must be IMAGE_FILE_MACHINE_UNKNOWN | |
| 1354 | sig1: IMAGE.FILE.MACHINE = .UNKNOWN, | |
| 1355 | /// Must be 0xFFFF | |
| 1356 | sig2: u16 = 0xFFFF, | |
| 1355 | 1357 | version: u16, |
| 1356 | 1358 | machine: IMAGE.FILE.MACHINE, |
| 1357 | 1359 | time_date_stamp: u32, |