-
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a35632d
commit 8bed6f7
Showing
3 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,31 @@ | ||
namespace Melanchall.DryWetMidi.Core | ||
{ | ||
/// <summary> | ||
/// Defines format of a MIDI data bytes. Depending on this format the specific | ||
/// MIDI data reading/writing rules can be applied. | ||
/// </summary> | ||
/// <remarks> | ||
/// <para> | ||
/// If <see cref="File"/> format specified, a system exclusive bytes layout is | ||
/// <c>F0 <length> <bytes to be transmitted after F0></c>, and <c>0xFF</c> | ||
/// status byte means a meta event. | ||
/// </para> | ||
/// <para> | ||
/// If <see cref="Device"/> format specified, a system exclusive bytes layout is | ||
/// <c>F0 <bytes to be transmitted after F0></c>, and <c>0xFF</c> | ||
/// status byte means Reset system real-time event. | ||
/// </para> | ||
/// </remarks> | ||
public enum BytesFormat | ||
{ | ||
/// <summary> | ||
/// Format used by MIDI files. | ||
/// </summary> | ||
File = 0, | ||
|
||
/// <summary> | ||
/// Format used in communication with MIDI devices. | ||
/// </summary> | ||
Device | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters