Changeset 21841 for branches/gcc-kmk/src/winmm/waveout.cpp
- Timestamp:
- Dec 1, 2011, 10:19:11 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/winmm/waveout.cpp
r21358 r21841 31 31 #include "misc.h" 32 32 #include "winmm.h" 33 #include "init winmm.h"33 #include "initterm.h" 34 34 35 35 #define DBG_LOCALLOG DBG_waveout … … 315 315 MMRESULT WINAPI waveOutGetErrorTextA(MMRESULT wError, LPSTR lpText, UINT cchText) 316 316 { 317 c har * theMsg = getWinmmMsg( wError );317 const char * theMsg = getWinmmMsg( wError ); 318 318 if(theMsg) { 319 319 strncpy( lpText, theMsg, cchText ); … … 331 331 MMRESULT WINAPI waveOutGetErrorTextW(MMRESULT wError, LPWSTR lpText, UINT cchText) 332 332 { 333 c har * theMsg = getWinmmMsg( wError );333 const char * theMsg = getWinmmMsg( wError ); 334 334 if(theMsg) { 335 335 AsciiToUnicodeN( theMsg, lpText, cchText );
Note:
See TracChangeset
for help on using the changeset viewer.