summaryrefslogtreecommitdiffstats
path: root/src/soundio/sounddeviceerror.h
blob: 7d6968b1fe9d449d208413e33c199026c4ead343 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

// Used for returning errors from sounddevice functions.
enum SoundDeviceError {
    SOUNDDEVICE_ERROR_ERR = -1,
    SOUNDDEVICE_ERROR_OK = 0,
    SOUNDDEVICE_ERROR_DUPLICATE_OUTPUT_CHANNEL,
    SOUNDDEVICE_ERROR_EXCESSIVE_OUTPUT_CHANNEL,
    SOUNDDEVICE_ERROR_EXCESSIVE_INPUT_CHANNEL,
    SOUNDDEVICE_ERROR_DEVICE_COUNT
};