使用 midiOutShortMsg 发送单个 MIDI 消息
以下示例使用 midiOutShortMsg 函数将指定的 MIDI 事件发送到给定的 MIDI 输出设备:
UINT sendMIDIEvent(HMIDIOUT hmo, BYTE bStatus, BYTE bData1,
BYTE bData2)
{
union {
DWORD dwData;
BYTE bData[4];
} u;
// Construct the MIDI message.
u.bData[0] = bStatus; // MIDI status byte
u.bData[1] = bData1; // first MIDI data byte
u.bData[2] = bData2; // second MIDI data byte
u.bData[3] = 0;
// Send the message.
return midiOutShortMsg(hmo, u.dwData);
}
注意
在将数据发送到输出端口之前,不需要 MIDI 输出驱动程序来验证数据。 应用程序必须确保仅发送有效数据。