git.videolan.org
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
8928109
)
crystalhd: use WCHAR were TEXT() was used to set the variable
author
Steve Lhomme
<robux4@ycbcr.xyz>
Wed, 3 Apr 2019 06:51:06 +0000
(08:51 +0200)
committer
Steve Lhomme
<robux4@ycbcr.xyz>
Wed, 3 Apr 2019 07:55:33 +0000
(09:55 +0200)
_T() is for TCHAR, TEXT() is for WCHAR
modules/codec/crystalhd.c
patch
|
blob
|
history
diff --git
a/modules/codec/crystalhd.c
b/modules/codec/crystalhd.c
index
5fab036
..
98526e1
100644
(file)
--- a/
modules/codec/crystalhd.c
+++ b/
modules/codec/crystalhd.c
@@
-193,7
+193,7
@@
static int OpenDecoder( vlc_object_t *p_this )
#ifdef USE_DL_OPENING
# define DLL_NAME "bcmDIL.dll"
# define PATHS_NB 3
- static const
T
CHAR *psz_paths[PATHS_NB] = {
+ static const
W
CHAR *psz_paths[PATHS_NB] = {
TEXT(DLL_NAME),
TEXT("C:\\Program Files\\Broadcom\\Broadcom CrystalHD Decoder\\" DLL_NAME),
TEXT("C:\\Program Files (x86)\\Broadcom\\Broadcom CrystalHD Decoder\\" DLL_NAME),