I have this code in a .mm
void MyMIDINotifyProc(const MIDINotification *message, void *refCon);
which goes with this line
MIDIClientCreate((CFStringRef)@"MidiMonitor MIDI Client", MyMIDINotifyProc, self, &client);
and then the MyMIDINotifyProc gets called from CoreMIDI.
Without changing the file extension to .m, I translated to an Obj-C signature:
@interface MidiInput (Private)
-(void) MyMIDINotifyProc:(const MIDINotification *)message reference:(void *)refCon;
@end
which compiles, but then I have no idea what to do with the MIDIClientCreate line. As is, it produces "MyMIDINotifyProc" was not declared in this scope. It's supposed to be of type void *... And the docs are 100% clear that it's A refCon passed back to notifyRefCon (link).
Is this problem solvable in Obj-C alone? I imagine I'd have to translate the C++ stuff to C, in which case I would just leave it alone.