comparison plugins/simple.c @ 90:f5b305c0d974

[gaim-migrate @ 100] Added plugin code. I have yet to test it. :P All I know is, I can successfully load a plugin. I don't know what I can do with it yet, and I'm not even sure I can unload it yet. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 07 Apr 2000 17:43:29 +0000
parents
children f3c6cf79f651
comparison
equal deleted inserted replaced
89:a382929aeb4f 90:f5b305c0d974
1 #include <stdio.h>
2
3 void gaim_plugin_init() {
4 printf("works.\n");
5 }
6
7 void gaim_plugin_remove() {
8 printf("works again.\n");
9 }