Changeset 21916 for trunk/src/winmm/waveout.cpp
- Timestamp:
- Dec 18, 2011, 10:28:22 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 bin 2 Makefile.inc 1 env.cmd 2 LocalConfig.kmk
-
-
Property svn:mergeinfo
set to
/branches/gcc-kmk merged eligible
- Property svn:ignore
-
trunk/src/winmm/waveout.cpp
r21358 r21916 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.