Mercurial > pidgin.yaz
comparison plugins/gaiminc.c @ 96:247f540ea6e1
[gaim-migrate @ 106]
Okay, this is cool. I think everything finally completely works. You can
even load plugins before you log in now (isn't that nice).
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Sun, 09 Apr 2000 18:42:36 +0000 |
parents | 9f6ce50ffb78 |
children | f810fc7d423f |
comparison
equal
deleted
inserted
replaced
95:19cffb5bd129 | 96:247f540ea6e1 |
---|---|
43 gaim_signal_connect(handle, event_im_recv, reverse, NULL); | 43 gaim_signal_connect(handle, event_im_recv, reverse, NULL); |
44 | 44 |
45 /* this is for doing something fun when a buddy comes online */ | 45 /* this is for doing something fun when a buddy comes online */ |
46 gaim_signal_connect(handle, event_buddy_signon, bud, NULL); | 46 gaim_signal_connect(handle, event_buddy_signon, bud, NULL); |
47 } | 47 } |
48 | |
49 char *name() { | |
50 return "Gaim Demonstration Plugin"; | |
51 } | |
52 | |
53 char *description() { | |
54 return "This is a really cool plugin that does a lot of stuff:\n" | |
55 "- It tells you who wrote the program when you log in\n" | |
56 "- It reverses all incoming text\n" | |
57 "- It sends a message to people on your list immediately" | |
58 " when they sign on"; | |
59 } |