Mercurial > pidgin
view libfaim/meta.c @ 2044:cad4405a0a45
[gaim-migrate @ 2054]
should be removing input watcher only after all possible signoffs occur, otherwise may get report that we're removing it twice
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Sat, 16 Jun 2001 20:10:32 +0000 |
parents | 3fe5799b7823 |
children |
line wrap: on
line source
/* * Administrative things for libfaim. * * */ #include <aim.h> faim_export char *aim_getbuilddate(void) { return AIM_BUILDDATE; } faim_export char *aim_getbuildtime(void) { return AIM_BUILDTIME; } faim_export int aim_getbuildstring(char *buf, int buflen) { snprintf(buf, buflen, "%d.%d.%d-%s%s", FAIM_VERSION_MAJOR, FAIM_VERSION_MINOR, FAIM_VERSION_MINORMINOR, aim_getbuilddate(), aim_getbuildtime()); return 0; } faim_internal void faimdprintf(struct aim_session_t *sess, int dlevel, const char *format, ...) { if (!sess) { fprintf(stderr, "faimdprintf: no session! boo! (%d, %s)\n", dlevel, format); return; } if ((dlevel <= sess->debug) && sess->debugcb) { va_list ap; va_start(ap, format); sess->debugcb(sess, dlevel, format, ap); va_end(ap); } return; }