src/protocols/oscar/adverts.c

Mon, 04 Mar 2002 03:04:49 +0000

author
Sean Egan <seanegan@pidgin.im>
date
Mon, 04 Mar 2002 03:04:49 +0000
changeset 3000
09342e401f4f
parent 2672
5c9b7617a1f3
child 3912
334ebe7e5f93
permissions
-rw-r--r--

[gaim-migrate @ 3013]
Played with the font loader some more in gtkimhtml.c

This one is the closest I've done to Eric's, I think. It should cause the least problems.

Also fixed the chatlist plugin again.

/*
 *
 *
 */

#define FAIM_INTERNAL
#include <aim.h>

faim_export int aim_ads_requestads(aim_session_t *sess, aim_conn_t *conn)
{
	return aim_genericreq_n(sess, conn, 0x0005, 0x0002);
}

static int snachandler(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs)
{
	return 0;
}

faim_internal int adverts_modfirst(aim_session_t *sess, aim_module_t *mod)
{

	mod->family = 0x0005;
	mod->version = 0x0001;
	mod->toolid = 0x0001;
	mod->toolversion = 0x0001;
	mod->flags = 0;
	strncpy(mod->name, "adverts", sizeof(mod->name));
	mod->snachandler = snachandler;

	return 0;
}

mercurial