summaryrefslogtreecommitdiff
path: root/core/plugin.h
blob: fd25d2a40e6451567330987b3af5ef8c12f71e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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