--- linuxsampler/trunk/src/network/lscpserver.h 2004/06/20 23:42:44 139 +++ linuxsampler/trunk/src/network/lscpserver.h 2004/06/21 00:23:56 140 @@ -57,7 +57,6 @@ LSCPServer(Sampler* pSampler); // Methods called by the parser - String CreateAudioOutputDevice(String Driver, std::map Parameters = StringMap()); String DestroyAudioOutputDevice(uint DeviceIndex); String LoadInstrument(String Filename, uint uiInstrument, uint uiSamplerChannel, bool bBackground = false); String LoadEngine(String EngineName, uint uiSamplerChannel); @@ -75,8 +74,10 @@ #ifdef __GNUC__ typedef std::map StringMap; // nasty workaround for a GCC bug (see GCC bug #15980, #57) String GetAudioOutputDriverParameterInfo(String Driver, String Parameter, std::map DependencyList = StringMap()); + String CreateAudioOutputDevice(String Driver, std::map Parameters = StringMap()); #else String GetAudioOutputDriverParameterInfo(String Driver, String Parameter, std::map DependencyList = std::map()); + String CreateAudioOutputDevice(String Driver, std::map Parameters = std::map()); #endif // __GNUC__ String GetAudioOutputDeviceCount(); String GetAudioOutputDevices();