I am trying to use the CoreMidi.framework with MacRuby and I am getting hung up on the correct way to implement the CoreMidi mechanisms in Ruby. I have created the MIDIClient and the OutputPort:
clientName = "Client"
clientRef = Pointer.new(:uint)
MIDIClientCreate( clientName, nil, nil, clientRef )
portName = "Output"
outport = Pointer.new(:uint)
MIDIOutputPortCreate( clientRef[0], portName, outport )
numberOfDestinations = MIDIGetNumberOfDestinations()
destination = MIDIGetDestination( 0 )
After this, I am at a loss for exactly what to do. I need to create a MIDIPacketList to send to MIDISend, but I'm not sure how this would be done in Ruby. The program hangs when I try to create a packet list with:
packetList = MIDIPacketList.new
Any suggestions?
MIDIClientCreateI get the errorTypeError: expected instance of Pointer of type '^{OpaqueMIDIClient}', got 'I'– SSteve Feb 14 at 1:18numberOfDestinationsanddestination? – SSteve Feb 14 at 15:56