Mercurial > pidgin
annotate 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 |
rev | line source |
---|---|
3719
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
1 /* |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
2 * winerror.h |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
3 * |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
4 * Author: Herman Bloggs <hermanator12002@yahoo.com> |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
5 * Date: October 14, 2002 |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
6 * Description: Redefine Unix Errors |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
7 */ |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
8 |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
9 #ifndef _WINERROR_H |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
10 #define _WINERROR_H |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
11 |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
12 /* Here we define unix socket errors as windows socket errors */ |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
13 |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
14 #define ENETDOWN WSAENETDOWN |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
15 #define EAFNOSUPPORT WSAEAFNOSUPPORT |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
16 #define EINPROGRESS WSAEINPROGRESS |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
17 #define ENOBUFS WSAENOBUFS |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
18 #define EPROTONOSUPPORT WSAEPROTONOSUPPORT |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
19 #define EPROTOTYPE WSAEPROTOTYPE |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
20 #define ESOCKTNOSUPPORT WSAESOCKTNOSUPPORT |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
21 |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
22 #define EADDRINUSE WSAEADDRINUSE |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
23 #define EINPROGRESS WSAEINPROGRESS |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
24 #define EALREADY WSAEALREADY |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
25 #define EADDRNOTAVAIL WSAEADDRNOTAVAIL |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
26 #define ECONNREFUSED WSAECONNREFUSED |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
27 #define EISCONN WSAEISCONN |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
28 #define ENETUNREACH WSAENETUNREACH |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
29 #define ENOTSOCK WSAENOTSOCK |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
30 #define ETIMEDOUT WSAETIMEDOUT |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
31 #define EWOULDBLOCK WSAEWOULDBLOCK |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
32 |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
33 #define ENOTCONN WSAENOTCONN |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
34 #define ENETRESET WSAENETRESET |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
35 #define EOPNOTSUPP WSAEOPNOTSUPP |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
36 #define ESHUTDOWN WSAESHUTDOWN |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
37 #define EMSGSIZE WSAEMSGSIZE |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
38 #define ECONNABORTED WSAECONNABORTED |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
39 #define ECONNRESET WSAECONNRESET |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
40 |
5233e2276a72
[gaim-migrate @ 3852]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
41 #endif /* end _WINERROR_H */ |