midiOutGetID function winmm

int midiOutGetID(
  1. int hmo,
  2. Pointer<Uint32> puDeviceID
)

The midiOutGetID function retrieves the device identifier for the given MIDI output device.

MMRESULT midiOutGetID(
  HMIDIOUT hmo,
  LPUINT   puDeviceID
);

Implementation

int midiOutGetID(int hmo, Pointer<Uint32> puDeviceID) =>
    _midiOutGetID(hmo, puDeviceID);