How to make custom script for incoming midi control messages (14bit values)?

Dear community,
since bindToControlChange14Bit unfortunately does not work I´m sending out two CCs like this for 14bit values:

midiOutput.sendMidi(activeDevice, [0xb0+ midiChannel, midiNum, msb]);  
midiOutput.sendMidi(activeDevice, [0xb0+ midiChannel, midiNum+1, lsb]);  

Now I would also like to react on incoming 14bit CC messages. Is there something like

midiInput.mOnSysex 

but for midi control messages, or another custom solution?
Thanks in advance, Emre

I tried out sending 14bit values from my controller as a very short sysex message (F0 0E msb lsb F7) and receiving them in cubase midi remote script with midiInput.mOnSysex which works great, so for now I´ll use this solution.
But I am still interested how to realize something like midiInput.mOnSysex for control/note/pitchbend etc messages…
Cheers, Emre

I don’t believe there is a catch-all method for any Control Change messages similar to mOnSysex. Typically a CC message is bound to a surface element where incoming messages will trigger the mOnProcessValueChange function.
Perhaps this entry in the API reference is helpful?
https://steinbergmedia.github.io/midiremote_api_doc/codedoc_api_reference#midibindingtocontrolchange

Thank you for helping out!
Looks like my workaround is the way to go then for now as long . bindToControlChange14Bit is not fixed. Since I´m using sysex now I´m also changing the way to send 14bit values to sysex instead of two cc messages…

Can’t you use NRPN instead?

I haven’t tried 14bit RPN but i use NRPN all the time and they work as intended.

Thanks for your advice Thomas!
I tried NRPN with success but it is very expensive and has its own way of using which cc for msb and lsb (not very customizable).
Since in my case I have total control over designing custom sysex messages for communication between cubase and my controller this turned out to be the best solution, even favorable to . bindToControlChange14Bit (if it worked).
So my initial problem is solved but if anybody still has an answer how to catch any incoming midi message (analog to midiInput.mOnSysex ) I am very interested.
Cheers, Emre