Mercurial > pidgin.yaz
view src/protocols/zephyr/zephyr_err.c @ 7283:b8fcbff88438
[gaim-migrate @ 7863]
I renamed struct oscar_data to typdef OscarData, which makes
this a freaking huge change to oscar.c
I think I added another progress meter step, giving oscar a
total of 8.
And a patch from Siberion (siberion):
Moving the mouse cursor over an ICQ buddy whose IP is
visible will show negative numbers in the IP for any
parts that exceed 127.
Example: 12.-37.-16.X
With the path applied, this shows as: 12.219.240.X
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 16 Oct 2003 20:57:59 +0000 |
parents | 424a40f12a6c |
children | 7c2e2c4d45a4 |
line wrap: on
line source
/* * zephyr_err.c: * This file is automatically generated; please do not edit it. */ #ifdef __STDC__ #define NOARGS void #else #define NOARGS #define const #endif static const char * const text[] = { "Packet too long or buffer too small", "Notice header too large", "Illegal value in notice", "Can't get host manager port", "Can't assign port", "Bad packet format", "Incompatible version numbers", "No port opened", "No notices match criteria", "Input queue too long", "Hostmanager not responding", "Internal error", "No previous call to ZLocateUser", "No more locations available", "Field too long for buffer", "Improperly formatted field", "SERVNAK received", "Server could not verify authentication", "Not logged-in", "No previous call to ZRetrieveSubscriptions", "No more subscriptions available", "Too many subscriptions to transmit", "End of file detected during read", 0 }; struct error_table { char const * const * msgs; long base; int n_msgs; }; struct et_list { struct et_list *next; const struct error_table * table; }; extern struct et_list *_et_list; static const struct error_table et = { text, -772103680L, 23 }; static struct et_list link = { 0, 0 }; void initialize_zeph_error_table (NOARGS) { if (!link.table) { link.next = _et_list; link.table = &et; _et_list = &link; } }