diff options
| author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-01 19:30:40 +0300 | 
|---|---|---|
| committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-08-01 19:30:40 +0300 | 
| commit | 9ea3f0f6afce744e75208dc083b8459b4c33ecf0 (patch) | |
| tree | e3c7ef5ee7f72ad8d1107b435ffe61348eee0703 /core | |
| parent | 4384e3d393f4ece218f401864b4edfaa0545f123 (diff) | |
	new file:   core/plugin.h
Diffstat (limited to 'core')
| -rw-r--r-- | core/plugin.h | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/core/plugin.h b/core/plugin.h new file mode 100644 index 0000000..fd25d2a --- /dev/null +++ b/core/plugin.h @@ -0,0 +1,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  | 
