Ignore:
Timestamp:
Dec 1, 2011, 10:19:11 PM (14 years ago)
Author:
dmik
Message:

Port WINMM, MCICDA and MCIWAVE DLLs to GCC/kBuild.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gcc-kmk/src/winmm/mci.cpp

    r10410 r21841  
    157157{
    158158  dprintf(("WINMM:mciGetErrorStringA(%d)\n", mcierr ));
    159   char * theMsg = getWinmmMsg( mcierr );
     159  const char * theMsg = getWinmmMsg( mcierr );
    160160  if ( theMsg )
    161161    strncpy( pszText, theMsg, cchText );
     
    184184{
    185185  dprintf(("WINMM:mciGetErrorStringW(%d)\n", mcierr ));
    186   char * theMsg = getWinmmMsg( mcierr );
     186  const char * theMsg = getWinmmMsg( mcierr );
    187187  if ( theMsg )
    188188    AsciiToUnicodeN( theMsg, pszText, cchText );
Note: See TracChangeset for help on using the changeset viewer.