CallbackMidiDevicesEventRawReceivedSet method |
|
Remarks
Sets the function of the CallbackMidiDevicesConfigChanged callback delegate which notifies when a raw MIDI event is received from a specific MIDI input device.
For further details about callback delegates see the How to synchronize the container application with the API tutorial.
For further details about the use of MIDI devices see the ClassMidiDevices class section and the How to manage MIDI devices tutorial.
Syntax
[Visual Basic] Public Function CallbackMidiDevicesEventRawReceivedSet ( nDeviceUniqueId as Int16, function as CallbackMidiDevicesEventRawReceived, nUserData as Int32 ) as enumErrorCodes |
[C#] public enumErrorCodes CallbackMidiDevicesEventRawReceivedSet ( Int16 nDeviceUniqueId, CallbackMidiDevicesEventRawReceived function, Int32 nUserData ); |
[C++] public: enumErrorCodes CallbackMidiDevicesEventRawReceivedSet ( Int16 nDeviceUniqueId, CallbackMidiDevicesEventRawReceived function, Int32 nUserData ); |
Parameter |
Description |
|
|
nDeviceUniqueId |
The unique identifier of the MIDI device returned by a previous call to the MidiDevices.Open method |
function |
Callback function |
nUserData |
User instance data to pass to the callback function |
Return value
Value |
Meaning |
|
|
Negative value |
An error occurred. Check the LastError property value in order to see the last error. |
enumDjcErrorCodes.ERR_DJC_NOERROR (0) |
The method call was successful. |