libsoundio/src/dummy.hpp

26 lines
416 B
C++
Raw Normal View History

2015-07-01 08:02:44 +00:00
/*
* Copyright (c) 2015 Andrew Kelley
*
* This file is part of libsoundio, which is MIT licensed.
* See http://opensource.org/licenses/MIT
*/
#ifndef SOUNDIO_DUMMY_HPP
#define SOUNDIO_DUMMY_HPP
#include "os.hpp"
int soundio_dummy_init(struct SoundIoPrivate *si);
2015-07-01 08:02:44 +00:00
struct SoundIoDummy {
SoundIoOsMutex *mutex;
SoundIoOsCond *cond;
bool devices_emitted;
};
struct SoundIoDeviceDummy {
};
2015-07-01 08:02:44 +00:00
#endif