midiInMessage function winmm

int midiInMessage(
  1. int hmi,
  2. int uMsg,
  3. int dw1,
  4. int dw2
)

The midiInMessage function sends a message to the MIDI device driver.

MMRESULT midiInMessage(
  HMIDIIN   hmi,
  UINT      uMsg,
  DWORD_PTR dw1,
  DWORD_PTR dw2
);

Implementation

int midiInMessage(int hmi, int uMsg, int dw1, int dw2) =>
    _midiInMessage(hmi, uMsg, dw1, dw2);