summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2010-08-01 19:30:40 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2010-08-01 19:30:40 +0300
commit9ea3f0f6afce744e75208dc083b8459b4c33ecf0 (patch)
treee3c7ef5ee7f72ad8d1107b435ffe61348eee0703
parent4384e3d393f4ece218f401864b4edfaa0545f123 (diff)
new file: core/plugin.h
-rw-r--r--core/plugin.h16
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