libclod
C library for interacting with NBTs, region files, LOD data and other things.
Loading...
Searching...
No Matches
audio.h
1#ifndef LIBCLOD_AUDIO_H
2#define LIBCLOD_AUDIO_H
3
4#include <clod/lib.h>
5#include <clod/stream.h>
6
7#define CLOD_AUDIO_OUT 1
8#define CLOD_AUDIO_IN 2
9
10#define CLOD_AUDIO_CHANNELS 0x100
11#define CLOD_AUDIO_1_CHANNELS (CLOD_AUDIO_CHANNELS * 1)
12#define CLOD_AUDIO_2_CHANNELS (CLOD_AUDIO_CHANNELS * 2)
13
22CLOD_API CLOD_NONNULL(1)
23int clod_audio(clod_stream *stream_out, int flags);
24
25#endif