comparison src/protocols/oscar/family_popup.c @ 13239:f260d319bbbc

[gaim-migrate @ 15605] Renaming a bunch of structs and typedefs to use the same naming scheme as the rest of Gaim committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 12 Feb 2006 16:02:05 +0000
parents f2431a7e33aa
children 6519aeb66b31
comparison
equal deleted inserted replaced
13238:1e855032d7bc 13239:f260d319bbbc
31 * This is all there is to it. 31 * This is all there is to it.
32 * 32 *
33 * The message is probably HTML. 33 * The message is probably HTML.
34 * 34 *
35 */ 35 */
36 static int parsepopup(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs) 36 static int parsepopup(OscarSession *sess, aim_module_t *mod, FlapFrame *rx, aim_modsnac_t *snac, ByteStream *bs)
37 { 37 {
38 aim_rxcallback_t userfunc; 38 aim_rxcallback_t userfunc;
39 aim_tlvlist_t *tl; 39 aim_tlvlist_t *tl;
40 int ret = 0; 40 int ret = 0;
41 char *msg, *url; 41 char *msg, *url;
57 free(url); 57 free(url);
58 58
59 return ret; 59 return ret;
60 } 60 }
61 61
62 static int snachandler(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs) 62 static int snachandler(OscarSession *sess, aim_module_t *mod, FlapFrame *rx, aim_modsnac_t *snac, ByteStream *bs)
63 { 63 {
64 64
65 if (snac->subtype == 0x0002) 65 if (snac->subtype == 0x0002)
66 return parsepopup(sess, mod, rx, snac, bs); 66 return parsepopup(sess, mod, rx, snac, bs);
67 67
68 return 0; 68 return 0;
69 } 69 }
70 70
71 faim_internal int popups_modfirst(aim_session_t *sess, aim_module_t *mod) 71 faim_internal int popups_modfirst(OscarSession *sess, aim_module_t *mod)
72 { 72 {
73 73
74 mod->family = 0x0008; 74 mod->family = 0x0008;
75 mod->version = 0x0001; 75 mod->version = 0x0001;
76 mod->toolid = 0x0104; 76 mod->toolid = 0x0104;