msadp32.acm: Use wide-char string literals.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
586dbd1e1e
commit
93a55831b2
|
@ -404,9 +404,6 @@ static LRESULT ADPCM_DriverDetails(PACMDRIVERDETAILSW add)
|
|||
*/
|
||||
static LRESULT ADPCM_FormatTagDetails(PACMFORMATTAGDETAILSW aftd, DWORD dwQuery)
|
||||
{
|
||||
static const WCHAR szPcm[]={'P','C','M',0};
|
||||
static const WCHAR szMsAdPcm[]={'M','i','c','r','o','s','o','f','t',' ','A','D','P','C','M',0};
|
||||
|
||||
switch (dwQuery)
|
||||
{
|
||||
case ACM_FORMATTAGDETAILSF_INDEX:
|
||||
|
@ -439,13 +436,13 @@ static LRESULT ADPCM_FormatTagDetails(PACMFORMATTAGDETAILSW aftd, DWORD dwQuery)
|
|||
aftd->dwFormatTag = WAVE_FORMAT_PCM;
|
||||
aftd->cbFormatSize = sizeof(PCMWAVEFORMAT);
|
||||
aftd->cStandardFormats = ARRAY_SIZE(PCM_Formats);
|
||||
lstrcpyW(aftd->szFormatTag, szPcm);
|
||||
lstrcpyW(aftd->szFormatTag, L"PCM");
|
||||
break;
|
||||
case 1:
|
||||
aftd->dwFormatTag = WAVE_FORMAT_ADPCM;
|
||||
aftd->cbFormatSize = sizeof(ADPCMWAVEFORMAT) + (7 - 1) * sizeof(ADPCMCOEFSET);
|
||||
aftd->cStandardFormats = ARRAY_SIZE(ADPCM_Formats);
|
||||
lstrcpyW(aftd->szFormatTag, szMsAdPcm);
|
||||
lstrcpyW(aftd->szFormatTag, L"Microsoft ADPCM");
|
||||
break;
|
||||
}
|
||||
return MMSYSERR_NOERROR;
|
||||
|
|
Loading…
Reference in New Issue