mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
13 lines
479 B
C
13 lines
479 B
C
|
#ifndef COSMOPOLITAN_LIBC_NT_ENUM_WSA_H_
|
||
|
#define COSMOPOLITAN_LIBC_NT_ENUM_WSA_H_
|
||
|
#include "libc/nt/errors.h"
|
||
|
|
||
|
#define kNtWsaInvalidHandle kNtErrorInvalidHandle
|
||
|
#define kNtWsaNotEnoughMemory kNtErrorNotEnoughMemory
|
||
|
#define kNtWsaInvalidParameter kNtErrorInvalidParameter
|
||
|
#define kNtWsaIoPending kNtErrorIoPending
|
||
|
#define kNtWsaIoIncomplete kNtErrorIoIncomplete
|
||
|
#define kNtWsaOperationAborted kNtErrorOperationAborted
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_NT_ENUM_WSA_H_ */
|