Mercurial > pidgin
annotate src/protocols/zephyr/error_table.h @ 8445:46f3c447da4d
[gaim-migrate @ 9175]
Mar 13 20:58:37 <nosnilmot> LSchiere2: ping
Mar 13 21:04:28 <LSchiere2> semi-pong
Mar 13 21:05:11 <nosnilmot> LSchiere2: simple one, do
you want a patch that splits changelog into ChangeLog &
po/ChangeLog ?
Mar 13 21:05:24 <LSchiere2> sure. go ahead
Mar 13 21:06:13 <nosnilmot>
http://www.nosnilmot.com/patches/gaim-0.76cvs-i18n-changelog.patch
...
Mar 13 21:58:31 <nosnilmot> LSchiere2: did you get
that changelog patch?
Mar 13 22:01:44 <LSchiere2> i grabbed it, nothing more
....
Mar 14 00:53:07 <LSchiere> nosnilmot: i left that
patch at work accidentally
All times in GST (Gaim Standard Time).
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Sun, 14 Mar 2004 19:01:53 +0000 |
| parents | 424a40f12a6c |
| children | fc464a0abccc |
| rev | line source |
|---|---|
| 2086 | 1 /* |
| 2 * Copyright 1988 by the Student Information Processing Board of the | |
| 3 * Massachusetts Institute of Technology. | |
| 4 * | |
| 5 * For copyright info, see mit-sipb-copyright.h. | |
| 6 */ | |
| 7 | |
| 8 #ifndef _ET_H | |
| 9 struct error_table { | |
| 10 char const * const * msgs; | |
| 11 long base; | |
| 12 int n_msgs; | |
| 13 }; | |
| 14 struct et_list { | |
| 15 struct et_list *next; | |
| 16 const struct error_table *table; | |
| 17 }; | |
| 18 extern struct et_list * _et_list; | |
| 19 | |
| 20 #define ERRCODE_RANGE 8 /* # of bits to shift table number */ | |
| 21 #define BITS_PER_CHAR 6 /* # bits to shift per character in name */ | |
| 22 | |
| 23 extern const char *error_table_name(); | |
| 24 #define _ET_H | |
| 25 #endif |
