Thu, 30 Jan 2003 21:25:24 +0000
[gaim-migrate @ 4756]
The last of gtk-related code is out of the conversation framework. There
are now functions to set and retrieve the conversation window UI operations
structures that will be used in all windows.
| 4130 | 1 | /* |
| 2 | * wgaimerror.h | |
| 3 | * | |
| 4 | * Author: Herman Bloggs <hermanator12002@yahoo.com> | |
| 5 | * Date: October 14, 2002 | |
| 6 | * Description: Redefine Unix Errors | |
| 7 | */ | |
| 8 | ||
| 9 | #ifndef _WGAIMERROR_H | |
| 10 | #define _WGAIMERROR_H | |
| 11 | ||
| 12 | /* Here we define unix socket errors as windows socket errors */ | |
| 13 | ||
| 14 | #define ENETDOWN WSAENETDOWN | |
| 15 | #define EAFNOSUPPORT WSAEAFNOSUPPORT | |
| 16 | #define EINPROGRESS WSAEINPROGRESS | |
| 17 | #define ENOBUFS WSAENOBUFS | |
| 18 | #define EPROTONOSUPPORT WSAEPROTONOSUPPORT | |
| 19 | #define EPROTOTYPE WSAEPROTOTYPE | |
| 20 | #define ESOCKTNOSUPPORT WSAESOCKTNOSUPPORT | |
| 21 | ||
| 22 | #define EADDRINUSE WSAEADDRINUSE | |
| 23 | #define EINPROGRESS WSAEINPROGRESS | |
| 24 | #define EALREADY WSAEALREADY | |
| 25 | #define EADDRNOTAVAIL WSAEADDRNOTAVAIL | |
| 26 | #define ECONNREFUSED WSAECONNREFUSED | |
| 27 | #define EISCONN WSAEISCONN | |
| 28 | #define ENETUNREACH WSAENETUNREACH | |
| 29 | #define ENOTSOCK WSAENOTSOCK | |
| 30 | #define ETIMEDOUT WSAETIMEDOUT | |
| 31 | #define EWOULDBLOCK WSAEWOULDBLOCK | |
| 32 | ||
| 33 | #define ENOTCONN WSAENOTCONN | |
| 34 | #define ENETRESET WSAENETRESET | |
| 35 | #define EOPNOTSUPP WSAEOPNOTSUPP | |
| 36 | #define ESHUTDOWN WSAESHUTDOWN | |
| 37 | #define EMSGSIZE WSAEMSGSIZE | |
| 38 | #define ECONNABORTED WSAECONNABORTED | |
| 39 | #define ECONNRESET WSAECONNRESET | |
| 40 | ||
| 41 | #endif /* end _WGAIMERROR_H */ |