Enum BytesFormat
Defines format of a MIDI data bytes. Depending on this format the specific
MIDI data reading/writing rules can be applied.
Namespace: Melanchall.DryWetMidi.Core
Assembly: Melanchall.DryWetMidi.dll
Syntax
public enum BytesFormat
Remarks
If File format specified, a system exclusive bytes layout is
F0 <length> <bytes to be transmitted after F0>
, and 0xFF
status byte means a meta event.
If Device format specified, a system exclusive bytes layout is
F0 <bytes to be transmitted after F0>
, and 0xFF
status byte means Reset system real-time event.
Fields
Name | Description |
---|---|
Device | Format used in communication with MIDI devices. |
File | Format used by MIDI files. |