diff options
author | Chris Robinson <[email protected]> | 2019-03-26 10:08:26 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-03-26 10:08:26 -0700 |
commit | 2c37d4fae1effb6791912bd1cff64777291bec78 (patch) | |
tree | 1548632b8750d1b5333f3c6d1127cf39a47f0d09 /Alc | |
parent | 4c32e55ac2e7e2136d020c4928fb6e45fbb4b8b3 (diff) |
Move an enum to a more appropriate header
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/backends/base.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Alc/backends/base.h b/Alc/backends/base.h index 93685d5a..b086104d 100644 --- a/Alc/backends/base.h +++ b/Alc/backends/base.h @@ -60,6 +60,11 @@ enum class BackendType { Capture }; +enum class DevProbe { + Playback, + Capture +}; + struct BackendFactory { virtual bool init() = 0; |