Mercurial > pidgin
annotate src/protocols/oscar/adverts.c @ 9166:1e51236d825e
[gaim-migrate @ 9951]
This removes some stuff for im image that isn't used anymore.
Basicly one of the things I did when i brought it back, was to make it so
the host widget doesn't have to do any special handling for its imhtml to
support <img id="###"> tags. And while this goal was achieved in 0.78,
there's still code all over the place that checks flags that aren't used
and iterates over lists that will always be empty. This doesn't remove all
of it, but removes some of it anyway.
committer: Tailor Script <tailor@pidgin.im>
author | Tim Ringenbach <marv@pidgin.im> |
---|---|
date | Wed, 02 Jun 2004 05:08:49 +0000 |
parents | e73c48cf1645 |
children |
rev | line source |
---|---|
2086 | 1 /* |
3912 | 2 * Family 0x0005 - Advertisements. |
2086 | 3 * |
4 */ | |
5 | |
6 #define FAIM_INTERNAL | |
7 #include <aim.h> | |
8 | |
2672 | 9 faim_export int aim_ads_requestads(aim_session_t *sess, aim_conn_t *conn) |
2086 | 10 { |
2672 | 11 return aim_genericreq_n(sess, conn, 0x0005, 0x0002); |
12 } | |
2086 | 13 |
2672 | 14 static int snachandler(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs) |
15 { | |
16 return 0; | |
17 } | |
2086 | 18 |
2672 | 19 faim_internal int adverts_modfirst(aim_session_t *sess, aim_module_t *mod) |
20 { | |
2086 | 21 |
2672 | 22 mod->family = 0x0005; |
23 mod->version = 0x0001; | |
24 mod->toolid = 0x0001; | |
25 mod->toolversion = 0x0001; | |
26 mod->flags = 0; | |
27 strncpy(mod->name, "adverts", sizeof(mod->name)); | |
28 mod->snachandler = snachandler; | |
2086 | 29 |
2246
933346315b9b
[gaim-migrate @ 2256]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
2086
diff
changeset
|
30 return 0; |
2086 | 31 } |