Changeset 21841 for branches/gcc-kmk/src/winmm/wavein.cpp
- Timestamp:
- Dec 1, 2011, 10:19:11 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/winmm/wavein.cpp
r21358 r21841 28 28 #include "winmm.h" 29 29 #include "waveindart.h" 30 #include "init winmm.h"30 #include "initterm.h" 31 31 32 32 #define DBG_LOCALLOG DBG_wavein … … 281 281 { 282 282 dprintf(("WINMM:waveInGetErrorTextA(%d)\n", wError )); 283 c har * theMsg = getWinmmMsg( wError );283 const char * theMsg = getWinmmMsg( wError ); 284 284 if ( theMsg ) 285 285 strncpy( lpText, theMsg, cchText ); … … 297 297 { 298 298 dprintf(("WINMM:waveInGetErrorTextW(%d) - stub\n", wError )); 299 c har * theMsg = getWinmmMsg( wError );299 const char * theMsg = getWinmmMsg( wError ); 300 300 if ( theMsg ) 301 301 AsciiToUnicodeN( theMsg, lpText, cchText );
Note:
See TracChangeset
for help on using the changeset viewer.