Mercurial > pidgin
view src/win32/winerror.h @ 4071:2532f1192da3
[gaim-migrate @ 4283]
So I made all them versions be the likes of winaim 5.1.3036. This
includes changing the ssi family/module version from 1 to 3. This
caused the SNAC flag 0x8000 to pop up in a few places, so I made a
change to rxhandlers.c that should take care of this.
This should allow you to add @mac.com buddies to your buddy list, as
well as get rid of the PleaseUpgrade000 buddies. It should also reduce
your risk of cancer by 5-10%.
Hopefully this won't break anything. Everything seems to be ok to me.
Baaaaah.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Fri, 13 Dec 2002 22:34:14 +0000 |
parents | 5233e2276a72 |
children |
line wrap: on
line source
/* * winerror.h * * Author: Herman Bloggs <hermanator12002@yahoo.com> * Date: October 14, 2002 * Description: Redefine Unix Errors */ #ifndef _WINERROR_H #define _WINERROR_H /* Here we define unix socket errors as windows socket errors */ #define ENETDOWN WSAENETDOWN #define EAFNOSUPPORT WSAEAFNOSUPPORT #define EINPROGRESS WSAEINPROGRESS #define ENOBUFS WSAENOBUFS #define EPROTONOSUPPORT WSAEPROTONOSUPPORT #define EPROTOTYPE WSAEPROTOTYPE #define ESOCKTNOSUPPORT WSAESOCKTNOSUPPORT #define EADDRINUSE WSAEADDRINUSE #define EINPROGRESS WSAEINPROGRESS #define EALREADY WSAEALREADY #define EADDRNOTAVAIL WSAEADDRNOTAVAIL #define ECONNREFUSED WSAECONNREFUSED #define EISCONN WSAEISCONN #define ENETUNREACH WSAENETUNREACH #define ENOTSOCK WSAENOTSOCK #define ETIMEDOUT WSAETIMEDOUT #define EWOULDBLOCK WSAEWOULDBLOCK #define ENOTCONN WSAENOTCONN #define ENETRESET WSAENETRESET #define EOPNOTSUPP WSAEOPNOTSUPP #define ESHUTDOWN WSAESHUTDOWN #define EMSGSIZE WSAEMSGSIZE #define ECONNABORTED WSAECONNABORTED #define ECONNRESET WSAECONNRESET #endif /* end _WINERROR_H */