#ifndef PLUGIN_H #define PLUGIN_H class plugin { public: const HMODULE getHmodule(); int setHandle(const HMODULE &hMod); int setName(const char *name); const char *getName(); plugin(const HMODULE &hModule, const char *name); ~plugin(); private: HMODULE hModule; char *szPluginName; }; #endif