summaryrefslogtreecommitdiffstats
path: root/audio/out/ao_dsound.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-07-28 23:59:17 +0200
committerwm4 <wm4@nowhere>2015-07-29 00:01:32 +0200
commit0b52ac8a78245793daaf533f5f8b74cb019a8aa8 (patch)
treed4256c2440a61c367006b858d90ea766075a9630 /audio/out/ao_dsound.c
parent7d889fbdd0735aab6c0930ed23bc8b5c33ff46e7 (diff)
downloadmpv-0b52ac8a78245793daaf533f5f8b74cb019a8aa8.tar.bz2
mpv-0b52ac8a78245793daaf533f5f8b74cb019a8aa8.tar.xz
win32: replace wchar_t with WCHAR
WCHAR is more portable. While at least MinGW, Cygwin, and MSVC actually use 16 bit wchar_t, Midipix will have 32 bit wchar_t. In that context, using WCHAR instead is more portable. This affects only non-MinGW parts, so not all uses of wchar_t need to be changed. For example, terminal-win.c won't be used on Midipix at all. (Most of io.c won't either, so the search & replace here is more than necessary, but also not harmful.) (Midipix is not useable yet, so this is just preparation.)
Diffstat (limited to 'audio/out/ao_dsound.c')
-rw-r--r--audio/out/ao_dsound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/out/ao_dsound.c b/audio/out/ao_dsound.c
index c581bf512e..3e950c3bab 100644
--- a/audio/out/ao_dsound.c
+++ b/audio/out/ao_dsound.c
@@ -174,7 +174,7 @@ static BOOL CALLBACK DirectSoundEnum(LPGUID guid, LPCSTR desc, LPCSTR module,
}
char *guidstr = talloc_strdup(NULL, "");
if (guid) {
- wchar_t guidwstr[80] = {0};
+ WCHAR guidwstr[80] = {0};
StringFromGUID2(guid, guidwstr, MP_ARRAY_SIZE(guidwstr));
char *nstr = mp_to_utf8(NULL, guidwstr);
if (nstr) {