Mercurial > pidgin.yaz
view src/protocols/oscar/adverts.c @ 7506:240aca6344b6
[gaim-migrate @ 8119]
I'm going climbing soon, but I'll be around later to make Mandrake
9.1 RPMs. 9.2 ISOs haven't been released to the public yet, AFAIK.
This is some more disconnection dialog stuff from Daniel Atallah.
It fixes a memleak (that I think I introduced), makes the most
recently disconnected account the selected account, and makes the
window manager close work correctly.
datallah: The fix for the window-manager-close-button is the
"case GTK_RESPONSE_DELETE_EVENT:" line.
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 13 Nov 2003 23:57:45 +0000 |
parents | e73c48cf1645 |
children |
line wrap: on
line source
/* * Family 0x0005 - Advertisements. * */ #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; }