Ignore:
Timestamp:
Sep 23, 1999, 11:35:25 AM (26 years ago)
Author:
sandervl
Message:

WinPostMsg calls changed into PostMessageA

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/winmm/midi.cpp

    r780 r1011  
    1 /* $Id: midi.cpp,v 1.6 1999-09-01 19:12:23 phaller Exp $ */
     1/* $Id: midi.cpp,v 1.7 1999-09-23 09:35:25 sandervl Exp $ */
    22
    33/*
     
    2929
    3030ODINDEBUGCHANNEL(WINMM-MIDI)
     31
     32//SvL: 23/09/99: WinPostMsg no longer works, as win32 window handles are no longer PM handles
     33BOOL WIN32API PostMessageA(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
    3134
    3235/*
     
    897900   if ( iCallbackWindow )
    898901   {
    899       WinPostMsg( iCallbackWindow, msg, (MPARAM)p1, (MPARAM)p2 );
     902      PostMessageA( iCallbackWindow, msg, (WPARAM)p1, (LPARAM)p2 );
    900903   }
    901904}
Note: See TracChangeset for help on using the changeset viewer.