Mon, 14 Apr 2003 18:24:38 +0000
[gaim-migrate @ 5494]
Added an overlay icon for "Not Authorized" buddies for ICQ, as suggested
by Nathan Walp.
Added a "Status: Not Authorized" line to the tooltip for ICQ buddies whose
authorization you don't have. This required making the gaim core call the
tooltip_text prpl function for offline buddies (previously it was only
called for online buddies).
Fixed the right-click "Re-request authorization" action. That was a stupid
problem with a } being in the wrong place at the wrong time. I put it in
line. Some brackets just require more guidance than others.
Fixed a minor crashbug on solaris when trying to print NULL values.
| 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 */ |