diff options
author | Chris Robinson <[email protected]> | 2019-08-11 18:50:07 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-08-11 18:50:07 -0700 |
commit | e200569cd319448d12099f27a2713c69da382d26 (patch) | |
tree | 5475e5aa20505bd403b46053321dd2d6a019ac5d /alc/backends | |
parent | 7118733458bc388a900677da6e0d4e4244d0f536 (diff) |
Move the wstr converters to a separate header
Diffstat (limited to 'alc/backends')
-rw-r--r-- | alc/backends/dsound.cpp | 1 | ||||
-rw-r--r-- | alc/backends/wasapi.cpp | 1 | ||||
-rw-r--r-- | alc/backends/wave.cpp | 1 | ||||
-rw-r--r-- | alc/backends/winmm.cpp | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/alc/backends/dsound.cpp b/alc/backends/dsound.cpp index b9e52c0c..ad182cf7 100644 --- a/alc/backends/dsound.cpp +++ b/alc/backends/dsound.cpp @@ -49,6 +49,7 @@ #include "ringbuffer.h" #include "compat.h" #include "dynload.h" +#include "strutils.h" #include "threads.h" /* MinGW-w64 needs this for some unknown reason now. */ diff --git a/alc/backends/wasapi.cpp b/alc/backends/wasapi.cpp index bd009463..cc53be66 100644 --- a/alc/backends/wasapi.cpp +++ b/alc/backends/wasapi.cpp @@ -59,6 +59,7 @@ #include "ringbuffer.h" #include "compat.h" #include "converter.h" +#include "strutils.h" #include "threads.h" diff --git a/alc/backends/wave.cpp b/alc/backends/wave.cpp index 6ca2fab4..aa4130af 100644 --- a/alc/backends/wave.cpp +++ b/alc/backends/wave.cpp @@ -43,6 +43,7 @@ #include "compat.h" #include "endiantest.h" #include "logging.h" +#include "strutils.h" #include "threads.h" #include "vector.h" diff --git a/alc/backends/winmm.cpp b/alc/backends/winmm.cpp index cd32e95b..b6787a24 100644 --- a/alc/backends/winmm.cpp +++ b/alc/backends/winmm.cpp @@ -40,6 +40,7 @@ #include "alcmain.h" #include "alu.h" #include "ringbuffer.h" +#include "strutils.h" #include "threads.h" #include "compat.h" |