just some fixes

dev-ui
erihel 2012-07-04 20:03:17 +02:00
parent ecab9761d4
commit 0e4b070b5f
3 changed files with 5 additions and 5 deletions

View File

@ -21,6 +21,7 @@
#include <string> #include <string>
#include <cstdarg> #include <cstdarg>
#include <cstdio>
#include <common/singleton.h> #include <common/singleton.h>

View File

@ -27,13 +27,13 @@
PLUGIN_INTERFACE(ALSound, CSoundInterface) PLUGIN_INTERFACE(ALSound, CSoundInterface)
char* ALSound::pluginName() char* ALSound::PluginName()
{ {
return const_cast<char *>("Sound plugin using OpenAL library to play sounds."); return const_cast<char *>("Sound plugin using OpenAL library to play sounds.");
} }
int ALSound::pluginVersion() int ALSound::PluginVersion()
{ {
return 1; return 1;
} }

View File

@ -74,9 +74,8 @@ class ALSound : public CSoundInterface
bool IsPlayingMusic(); bool IsPlayingMusic();
// plugin interface // plugin interface
char* pluginName(); char* PluginName();
int pluginVersion(); int PluginVersion();
void pluginInit();
private: private:
void CleanUp(); void CleanUp();