| author | |
| committer | |
| log | d99f0a2b8fc3c8617e95396d3c308fccf8beceb6 |
| tree | b02ac790962dd0caf703c91ac37da20379d0c24a |
| parent | 1537d4701effe780d68444dec55073901001576a |
| signature | Commit is signed but in an unrecognized format. |
1 files changed, 5 insertions(+), 1 deletions(-)
lib/std/os/windows/bits.zig+5-1| ... | @@ -236,7 +236,11 @@ pub const FILE_NAME_INFORMATION = extern struct { | ... | @@ -236,7 +236,11 @@ pub const FILE_NAME_INFORMATION = extern struct { |
| 236 | }; | 236 | }; |
| 237 | 237 | ||
| 238 | pub const IO_STATUS_BLOCK = extern struct { | 238 | pub const IO_STATUS_BLOCK = extern struct { |
| 239 | Status: usize, | 239 | // "DUMMYUNIONNAME" expands to "u" |
| 240 | u: extern union { | ||
| 241 | Status: NTSTATUS, | ||
| 242 | Pointer: ?*c_void, | ||
| 243 | }, | ||
| 240 | Information: ULONG_PTR, | 244 | Information: ULONG_PTR, |
| 241 | }; | 245 | }; |
| 242 | 246 |