authorgravatar for keine emailMichael Ortmann <keine email> 2024-03-21 05:37:16+01:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2024-03-21 17:08:50+02:00
logafdc41cfd61db23f545d9239b61695e2ae991713
tree75fb7a2a91977f415947e341c052db72ecb269a8
parentb5cef9e8b48e81fb1f3b56cb752bac95e6a2d44b

std.os.windows: add POLL.IN and POLL.OUT


1 files changed, 2 insertions(+), 0 deletions(-)

lib/std/os/windows/ws2_32.zig+2
...@@ -850,6 +850,8 @@ pub const POLL = struct {...@@ -850,6 +850,8 @@ pub const POLL = struct {
850 pub const ERR = 1;850 pub const ERR = 1;
851 pub const HUP = 2;851 pub const HUP = 2;
852 pub const NVAL = 4;852 pub const NVAL = 4;
853 pub const IN = RDNORM | RDBAND;
854 pub const OUT = WRNORM;
853};855};
854856
855pub const TF_DISCONNECT = 1;857pub const TF_DISCONNECT = 1;