mirror of
https://github.com/Ryujinx/libsoundio.git
synced 2025-07-01 06:08:28 +00:00
34 lines
530 B
C++
34 lines
530 B
C++
/*
|
|
* Copyright (c) 2015 Andrew Kelley
|
|
*
|
|
* This file is part of libsoundio, which is MIT licensed.
|
|
* See http://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#ifndef SOUNDIO_COREAUDIO_HPP
|
|
#define SOUNDIO_COREAUDIO_HPP
|
|
|
|
#include "soundio/soundio.h"
|
|
|
|
int soundio_coreaudio_init(struct SoundIoPrivate *si);
|
|
|
|
struct SoundIoDeviceCoreAudio {
|
|
};
|
|
|
|
struct SoundIoCoreAudio {
|
|
};
|
|
|
|
struct SoundIoOutStreamCoreAudioPort {
|
|
};
|
|
|
|
struct SoundIoOutStreamCoreAudio {
|
|
};
|
|
|
|
struct SoundIoInStreamCoreAudioPort {
|
|
};
|
|
|
|
struct SoundIoInStreamCoreAudio {
|
|
};
|
|
|
|
#endif
|