WIP Windows build

This commit is contained in:
athile 2010-08-30 10:34:32 +01:00
parent 4a31f4e0f8
commit 2407f21c47
2 changed files with 4 additions and 4 deletions

View file

@ -4,8 +4,8 @@
#include "../../stream/filters/buffer_stream.hpp"
#include "../../tools/str_exception.hpp"
#include <AL/al.h>
#include <AL/alc.h>
#include "al.h"
#include "alc.h"
using namespace Mangle::Sound;

View file

@ -30,8 +30,8 @@ class OpenAL_Factory : public SoundFactory
OpenAL_Factory(bool doSetup = true);
~OpenAL_Factory();
SoundPtr load(const std::string &file) { assert(0); }
SoundPtr load(Stream::StreamPtr input) { assert(0); }
SoundPtr load(const std::string &file) { assert(0); return SoundPtr(); }
SoundPtr load(Stream::StreamPtr input) { assert(0); return SoundPtr(); }
SoundPtr loadRaw(SampleSourcePtr input);
void update();