DMUS_SYSEX_PMSG

DirectMusic

Microsoft DirectX 9.0 SDK Update (Summer 2004)

DMUS_SYSEX_PMSG

The DMUS_SYSEX_PMSG structure contains data for a MIDI system-exclusive message.

Syntax

typedef struct DMUS_SYSEX_PMSG {
  DMUS_PMSG_PART
  DWORD dwLen;
  BYTE  abData[1];
} DMUS_SYSEX_PMSG;

Members

DMUS_PMSG_PART

Macro for common message members. See DMUS_PMSG.

dwLen

Length of the data, in bytes.

abData

Array of data. For an example of how to allocate memory and copy data to this member, see the Remarks for IDirectMusicPerformance8::SendPMsg.

Remarks

The data part of a system exclusive message must begin with the System Exclusive identifier (0xF0) and end with EOX (0xF7).

Requirements

  Header: Declared in dmusici.h.

See Also


© 2004 Microsoft Corporation. All rights reserved.