Ignore:
Timestamp:
Sep 1, 1999, 9:12:23 PM (26 years ago)
Author:
phaller
Message:

Fix: header file cleanup (win32type.h)

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:11 phaller Exp $ */
     1/* $Id: midi.cpp,v 1.6 1999-09-01 19:12:23 phaller Exp $ */
    22
    33/*
     
    961961{
    962962   // 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 );
    965965
    966966   // Link the two instances
     
    11121112   dprintf(( "WINMM: MidiOut::open(%s)\n",iHwdInstance->name()));
    11131113   // 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 );
    11161116
    11171117   // Link the two instances
Note: See TracChangeset for help on using the changeset viewer.