Mercurial > pidgin
annotate src/protocols/zephyr/com_err.h @ 6322:dd2be7cd66df
[gaim-migrate @ 6821]
This is:
-Alphabetize the translation things in ChangeLog
-Spell Brian Tarricone's name correctly (I hope...)
-A fix for a crash when renaming a group containing a chat, thanks to
javabsp. Me gusta this change.
-Make the rename group dialog use gaim_request_input(). The old dialog
may be a bit prettier, but this one uses the request code, which means
less work for UIs, which rocks.
-Change the TRUE and FALSE defines in aim.h to be more compatible with c++.
Thanks to Zack Rusin for this change.
-Declare aim.h as a C file when it is used in a c++ program. This should
let libfaim be used in C++ programs such as kopete. Thanks again to
Zack Rusin.
-Rename aimutil_itemidx() to aimutil_itemindex(). "idx" is not a standard
abbreviation, and code is written once and read many times--it should be
easily readable.
-Not an automatic laundry folding machine. So I'm going to do that.
(Fold my laundry)
(Not automatically)
(yet)
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Tue, 29 Jul 2003 04:27:31 +0000 |
| parents | 424a40f12a6c |
| children |
| rev | line source |
|---|---|
| 2086 | 1 /* |
| 2 * Header file for common error description library. | |
| 3 * | |
| 4 * Copyright 1988, Student Information Processing Board of the | |
| 5 * Massachusetts Institute of Technology. | |
| 6 * | |
| 7 * For copyright and distribution info, see the documentation supplied | |
| 8 * with this package. | |
| 9 */ | |
| 10 | |
| 11 #ifndef __COM_ERR_H | |
| 12 #define __COM_ERR_H | |
| 13 | |
| 14 #define COM_ERR_BUF_LEN 25 | |
| 15 | |
| 16 /* Use __STDC__ to guess whether we can use stdarg, prototypes, and const. | |
| 17 * This is a public header file, so autoconf can't help us here. */ | |
| 18 #ifdef __STDC__ | |
| 19 # include <stdarg.h> | |
| 20 # define ETP(x) x | |
| 21 # define ETCONST const | |
| 22 #else | |
| 23 # define ETP(x) () | |
| 24 # define ETCONST | |
| 25 #endif | |
| 26 | |
| 27 typedef void (*error_handler_t) ETP((ETCONST char *, long, ETCONST char *, | |
| 28 va_list)); | |
| 29 extern error_handler_t com_err_hook; | |
| 30 void com_err ETP((ETCONST char *, long, ETCONST char *, ...)); | |
| 31 ETCONST char *error_message ETP((long)); | |
| 32 ETCONST char *error_message_r ETP((long, char *)); | |
| 33 error_handler_t set_com_err_hook ETP((error_handler_t)); | |
| 34 error_handler_t reset_com_err_hook ETP((void)); | |
| 35 | |
| 36 #undef ETP | |
| 37 | |
| 38 #endif /* ! defined(__COM_ERR_H) */ |
