caudio/plugins/EAXLegacyPreset/main.cpp
Joshua Jones 17aa93f57c Added ability for users to access the plugin manager.
Added plugin for legacy EAX presets.
2010-02-14 23:16:44 +00:00

15 lines
391 B
C++

#include "cAudioDefines.h"
#include "cEAXLegacyPresetPlugin.h"
#include <string>
//Gives back the plugin class for cAudio to install and use.
extern "C" CAUDIO_API IAudioPlugin* GetPluginModule(const char* version)
{
//Double-check the version to make sure we can be used
if(strcmp(CAUDIO_VERSION, version) == 0)
{
return new cEAXLegacyPresetPlugin();
}
return NULL;
}