Mon, 05 Nov 2001 02:05:06 +0000
[gaim-migrate @ 2685]
Time has told me
You're a rare, rare find
A troubled cure
For a troubled mind
And time has told me
Not to ask for more
Someday our ocean
Will find its shore
| 2672 | 1 | /* |
| 2 | * This might be fun to implement. Right? Maybe not. | |
| 3 | */ | |
| 4 | ||
| 5 | #define FAIM_INTERNAL | |
| 6 | #include <aim.h> | |
| 7 | ||
| 8 | faim_internal int popups_modfirst(aim_session_t *sess, aim_module_t *mod) | |
| 9 | { | |
| 10 | ||
| 11 | mod->family = 0x0008; | |
| 12 | mod->version = 0x0001; | |
| 13 | mod->toolid = 0x0104; | |
| 14 | mod->toolversion = 0x0001; | |
| 15 | mod->flags = 0; | |
| 16 | strncpy(mod->name, "popups", sizeof(mod->name)); | |
| 17 | mod->snachandler = NULL; | |
| 18 | ||
| 19 | return 0; | |
| 20 | } | |
| 21 | ||
| 22 |