view plugins/simple.c @ 92:f3c6cf79f651

[gaim-migrate @ 102] Loading/unloading plugins works correctly. I have to add "hooks" to the rest of gaim now to do certain things. Other than that, it's all good. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 07 Apr 2000 22:48:58 +0000
parents f5b305c0d974
children 9f6ce50ffb78
line wrap: on
line source

#include <stdio.h>

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

void gaim_plugin_remove() {
	printf("plugin unloaded.\n");
}

char *name() {
	return "Simple plugin";
}

char *description() {
	return "Tests to see that most things are working.";
}