Changeset 780 for trunk/src/winmm/midi.cpp
- Timestamp:
- Sep 1, 1999, 9:12:23 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/winmm/midi.cpp
r668 r780 1 /* $Id: midi.cpp,v 1. 5 1999-08-24 21:21:11phaller Exp $ */1 /* $Id: midi.cpp,v 1.6 1999-09-01 19:12:23 phaller Exp $ */ 2 2 3 3 /* … … 961 961 { 962 962 // Enable Appl instance to receive and the hardware instance to send 963 iAppInstance->enableReceive( TRUE );964 iHwdInstance->enableSend( TRUE );963 iAppInstance->enableReceive( (ULONG)TRUE ); 964 iHwdInstance->enableSend( (ULONG)TRUE ); 965 965 966 966 // Link the two instances … … 1112 1112 dprintf(( "WINMM: MidiOut::open(%s)\n",iHwdInstance->name())); 1113 1113 // Enable Appl instance to send and the hwd instance to receive 1114 iAppInstance->enableSend( TRUE );1115 iHwdInstance->enableReceive( TRUE );1114 iAppInstance->enableSend( (ULONG)TRUE ); 1115 iHwdInstance->enableReceive( (ULONG)TRUE ); 1116 1116 1117 1117 // Link the two instances
Note:
See TracChangeset
for help on using the changeset viewer.