1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- #ifndef cmMidiPort_h
- #define cmMidiPort_h
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- typedef unsigned cmMpRC_t;
-
- // Flags used to identify input and output ports on MIDI devices
- enum
- {
- kInMpFl = 0x01,
- kOutMpFl = 0x02
- };
-
-
- enum
- {
- kOkMpRC = cmOkRC,
- kCfStringErrMpRC,
- kSysErrMpRC,
- kInvalidArgMpRC,
- kMemAllocFailMpRC,
- kNotImplMpRC,
- kCbNotFoundMpRC
-
- };
-
- typedef void (*cmMpCallback_t)( const cmMidiPacket_t* pktArray, unsigned pktCnt );
-
-
- //===============================================================================================
- // MIDI Parser
- //
-
- typedef cmHandle_t cmMpParserH_t;
-
- // 'cbFunc' and 'cbDataPtr' are optional. If 'cbFunc' is not supplied in the call to
- // cmMpParserCreate() it may be supplied later by cmMpParserInstallCallback().
- // 'bufByteCnt' defines is the largest complete system-exclusive message the parser will
- // by able to transmit. System-exclusive messages larger than this will be broken into
- // multiple sequential callbacks.
- cmMpParserH_t cmMpParserCreate( unsigned devIdx, unsigned portIdx, cmMpCallback_t cbFunc, void* cbDataPtr, unsigned bufByteCnt, cmRpt_t* rpt );
- void cmMpParserDestroy( cmMpParserH_t* hp );
- unsigned cmMpParserErrorCount( cmMpParserH_t h );
- void cmMpParseMidiData( cmMpParserH_t h, unsigned deltaMicroSecs, const cmMidiByte_t* buf, unsigned bufByteCnt );
-
- // Install/Remove additional callbacks.
- cmMpRC_t cmMpParserInstallCallback( cmMpParserH_t h, cmMpCallback_t cbFunc, void* cbDataPtr );
- cmMpRC_t cmMpParserRemoveCallback( cmMpParserH_t h, cmMpCallback_t cbFunc, void* cbDataPtr );
-
- // Returns true if the parser uses the given callback.
- bool cmMpParserHasCallback( cmMpParserH_t h, cmMpCallback_t cbFunc, void* cbDataPtr );
-
-
- //===============================================================================================
- // MIDI Device Interface
- //
-
- // 'cbFunc' and 'cbDataPtr' are optional (they may be set to NULL). In this case
- // 'cbFunc' and 'cbDataPtr' may be set in a later call to cmMpInstallCallback().
- cmMpRC_t cmMpInitialize( cmMpCallback_t cbFunc, void* cbDataPtr, unsigned parserBufByteCnt, const char* appNameStr, cmRpt_t* rpt );
- cmMpRC_t cmMpFinalize();
- bool cmMpIsInitialized();
-
- unsigned cmMpDeviceCount();
- const char* cmMpDeviceName( unsigned devIdx );
- unsigned cmMpDevicePortCount( unsigned devIdx, unsigned flags );
- const char* cmMpDevicePortName( unsigned devIdx, unsigned flags, unsigned portIdx );
- cmMpRC_t cmMpDeviceSend( unsigned devIdx, unsigned portIdx, cmMidiByte_t st, cmMidiByte_t d0, cmMidiByte_t d1 );
- cmMpRC_t cmMpDeviceSendData( unsigned devIdx, unsigned portIdx, const cmMidiByte_t* dataPtr, unsigned byteCnt );
-
- // Set devIdx to -1 to assign the callback to all devices.
- // Set portIdx to -1 to assign the callback to all ports on the specified devices.
- //
- cmMpRC_t cmMpInstallCallback( unsigned devIdx, unsigned portIdx, cmMpCallback_t cbFunc, void* cbDataPtr );
- cmMpRC_t cmMpRemoveCallback( unsigned devIdx, unsigned portIdx, cmMpCallback_t cbFunc, void* cbDataPtr );
- bool cmMpUsesCallback( unsigned devIdx, unsigned portIdx, cmMpCallback_t cbFunc, void* cbDataPtr );
-
- void cmMpReport( cmRpt_t* rpt );
-
- void cmMpTest( cmRpt_t* rpt );
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
|