/************************************************************************** * DSemu: Plugin handling definitions (plugin.h) * * Released under the terms of the BSD Public Licence * * Imran Nazar (tf@oopsilon.com), 2004 * **************************************************************************/ #ifndef __PLUGIN_H_ #define __PLUGIN_H_ #include "vtbl.h" typedef struct { char name[8]; HANDLE dll; } PLUGIN; void pluginInit(); void *pluginLoad(char*); void pluginUnload(char*); #endif//__PLUGIN_H_ /*** EOF:plugin.h ********************************************************/