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

This commit is contained in:
Michael Ortmann 2024-03-21 05:37:16 +01:00 committed by Veikka Tuominen
parent b5cef9e8b4
commit afdc41cfd6

View File

@ -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;