typeContinue (code 12)


A Real Time Continue message.

Continue events have no field.


Creates a Continue event. Return a pointer to the event or NIL if there is no more memory space.


MidiEvPtr Continue ( long date, short port)
{
    MidiEvPtr e;

    if ( e = MidiNewEv( typeContinue ) )/* Allocate a new event. Check not NIL*/ 
    {
        Date(e) = date;        /* These information are common to all */
        Port(e) = port;        /* kind of events */
    }
    return e;
}