Commit e6894458 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

include/msvcrt: Add POSIX error codes to errno.h.

parent 6b268e77
......@@ -63,6 +63,50 @@
# define STRUNCATE 80
#ifndef _CRT_NO_POSIX_ERROR_CODES
# define EADDRINUSE 100
# define EADDRNOTAVAIL 101
# define EAFNOSUPPORT 102
# define EALREADY 103
# define EBADMSG 104
# define ECANCELED 105
# define ECONNABORTED 106
# define ECONNREFUSED 107
# define ECONNRESET 108
# define EDESTADDRREQ 109
# define EHOSTUNREACH 110
# define EIDRM 111
# define EINPROGRESS 112
# define EISCONN 113
# define ELOOP 114
# define EMSGSIZE 115
# define ENETDOWN 116
# define ENETRESET 117
# define ENETUNREACH 118
# define ENOBUFS 119
# define ENODATA 120
# define ENOLINK 121
# define ENOMSG 122
# define ENOPROTOOPT 123
# define ENOSR 124
# define ENOSTR 125
# define ENOTCONN 126
# define ENOTRECOVERABLE 127
# define ENOTSOCK 128
# define ENOTSUP 129
# define EOPNOTSUPP 130
# define EOTHER 131
# define EOVERFLOW 132
# define EOWNERDEAD 133
# define EPROTO 134
# define EPROTONOSUPPORT 135
# define EPROTOTYPE 136
# define ETIME 137
# define ETIMEDOUT 138
# define ETXTBSY 139
# define EWOULDBLOCK 140
#endif
#ifdef __cplusplus
extern "C" {
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment