Windows compile fixes

This commit is contained in:
Phillip 2016-05-20 20:22:00 -07:00
parent 6f04bea1f0
commit e48f5d36c7
2 changed files with 15 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#include "boo/audiodev/MIDIDecoder.hpp"
#include "MIDICommon.hpp"
#include <memory>
#include <algorithm>
namespace boo
{

View File

@ -250,6 +250,20 @@ struct WASAPIAudioVoiceEngine : BaseAudioVoiceEngine
m_started = true;
}
}
std::vector<std::pair<std::string, std::string>> enumerateMIDIDevices() const { return {}; }
std::unique_ptr<IMIDIIn> newVirtualMIDIIn(ReceiveFunctor&& receiver) { return {}; }
std::unique_ptr<IMIDIOut> newVirtualMIDIOut() { return {}; }
std::unique_ptr<IMIDIInOut> newVirtualMIDIInOut(ReceiveFunctor&& receiver) { return {}; }
std::unique_ptr<IMIDIIn> newRealMIDIIn(const char* name, ReceiveFunctor&& receiver) { return {}; }
std::unique_ptr<IMIDIOut> newRealMIDIOut(const char* name) { return {}; }
std::unique_ptr<IMIDIInOut> newRealMIDIInOut(const char* name, ReceiveFunctor&& receiver) { return {}; }
};
std::unique_ptr<IAudioVoiceEngine> NewAudioVoiceEngine()