view 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
line wrap: on
line source

#include <stdio.h>

void gaim_plugin_init() {
	printf("works.\n");
}

void gaim_plugin_remove() {
	printf("works again.\n");
}