Commit afdc41cfd6

Michael Ortmann <keine email>
2024-03-21 05:37:16
std.os.windows: add POLL.IN and POLL.OUT
1 parent b5cef9e
Changed files (1)
lib
std
os
windows
lib/std/os/windows/ws2_32.zig
@@ -850,6 +850,8 @@ pub const POLL = struct {
     pub const ERR = 1;
     pub const HUP = 2;
     pub const NVAL = 4;
+    pub const IN = RDNORM | RDBAND;
+    pub const OUT = WRNORM;
 };
 
 pub const TF_DISCONNECT = 1;