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 <cstdarg>
#include <cstdio>
#include <common/singleton.h>

View File

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

View File

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