summaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-07-04 19:20:22 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-07-04 19:20:22 +0200
commit092e4ae75e28fca8cf13d0315eb3923ba1c27133 (patch)
tree626db24b153b1ef43486a50361fde4dd046dc2ad /src/plugins
parent398186afd0f4f18ccdcffe8b7eb37f1873c28e61 (diff)
downloadcolobot-092e4ae75e28fca8cf13d0315eb3923ba1c27133.tar.gz
colobot-092e4ae75e28fca8cf13d0315eb3923ba1c27133.tar.bz2
colobot-092e4ae75e28fca8cf13d0315eb3923ba1c27133.zip
Enabled logging & minor fixes
- added logger to main() - removed reference to Snd namespace and renamed back to sound.h - fixed minor issues
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/plugin.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/plugin.h b/src/plugins/plugin.h
index 216d08c..f238122 100644
--- a/src/plugins/plugin.h
+++ b/src/plugins/plugin.h
@@ -21,13 +21,13 @@
#define PLUGIN_INTERFACE(class_type, interface_type) \
- extern "C" interface_type* installPlugin() { return (interface_type *)new class_type(); } \
- extern "C" void uninstallPlugin(class_type *_class) { delete _class; }
+ extern "C" interface_type* installPlugin() { return (interface_type *)new class_type(); } \
+ extern "C" void uninstallPlugin(class_type *_class) { delete _class; }
class CPlugin {
- public:
- virtual char* pluginName() = 0;
- virtual int pluginVersion() = 0;
+ public:
+ virtual char* PluginName() = 0;
+ virtual int PluginVersion() = 0;
};