view libfaim/meta.c @ 1911:db3104dda736

[gaim-migrate @ 1921] Mike Heffner's redesigned UI. I changed around a lot of things from his patch, not because they weren't good or needed or anything like that; most of the changes I made just made the patch smaller. I moved functions back to where they originally where and renamed them back to what they originally were. Granted the names aren't as... good as the changes Mike made, but eh, it made my life a lot easier when I could see the meat of the changes without all the cosmetic details. The only thing I really changed about his patch was I made the list BROWSE instead of SINGLE so that there wouldn't be need for a deselect callback. Oh yeah, and update_show_plugins is called from different places (so that plugins can call load_plugin and have the window update properly). committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 29 May 2001 09:46:05 +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;
}