Changeset 21916 for trunk/src/winmm/midi.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/midi.cpp
r10173 r21916 38 38 */ 39 39 40 c har * getWinmmMsg( MMRESULT result )41 { 42 c har * ret;40 const char * getWinmmMsg( MMRESULT result ) 41 { 42 const char * ret; 43 43 switch ( result ) 44 44 { … … 243 243 { 244 244 dprintf(("WINMM:midiInGetErrorTextA(%d)\n", wError )); 245 c har * theMsg = getWinmmMsg( wError );245 const char * theMsg = getWinmmMsg( wError ); 246 246 if ( theMsg ) 247 247 strncpy( lpText, theMsg, cchText ); … … 260 260 { 261 261 dprintf(("WINMM:midiInGetErrorTextW(%d)\n", wError )); 262 c har * theMsg = getWinmmMsg( wError );262 const char * theMsg = getWinmmMsg( wError ); 263 263 if ( theMsg ) 264 264 AsciiToUnicodeN( theMsg, lpText, cchText ); … … 563 563 { 564 564 dprintf(("WINMM:midiOutGetErrorTextA(%d)\n", wError )); 565 c har * theMsg = getWinmmMsg( wError );565 const char * theMsg = getWinmmMsg( wError ); 566 566 if ( theMsg ) 567 567 strncpy( lpText, theMsg, cchText ); … … 579 579 { 580 580 dprintf(("WINMM:midiOutGetErrorTextW(%d) - need to translate\n", wError )); 581 c har * theMsg = getWinmmMsg( wError );581 const char * theMsg = getWinmmMsg( wError ); 582 582 if ( theMsg ) 583 583 AsciiToUnicodeN( theMsg, lpText, cchText );
Note:
See TracChangeset
for help on using the changeset viewer.