mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
14 lines
466 B
C
14 lines
466 B
C
|
#ifndef COSMOPOLITAN_LIBC_NT_ENUM_AFD_H_
|
||
|
#define COSMOPOLITAN_LIBC_NT_ENUM_AFD_H_
|
||
|
|
||
|
#define kNtAfdPollReceive 0x0001
|
||
|
#define kNtAfdPollReceiveExpedited 0x0002
|
||
|
#define kNtAfdPollSend 0x0004
|
||
|
#define kNtAfdPollDisconnect 0x0008
|
||
|
#define kNtAfdPollAbort 0x0010
|
||
|
#define kNtAfdPollLocalClose 0x0020
|
||
|
#define kNtAfdPollAccept 0x0080
|
||
|
#define kNtAfdPollConnectFail 0x0100
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_NT_ENUM_AFD_H_ */
|