-
Notifications
You must be signed in to change notification settings - Fork 450
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1539 from jlucfarias/add-midi-symbols
Add more MIDI definitions
- Loading branch information
Showing
2 changed files
with
85 additions
and
4 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
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,5 +1,15 @@ | ||
#import <CoreMIDI/MIDIServices.h> | ||
|
||
// Note: It is expected for some of these values to be assigned `nil`, | ||
// Not sure why Apple doesn't actually assign a CFString value to these | ||
// variables... | ||
|
||
/* Identification */ | ||
const CFStringRef kMIDIPropertyName = nil; | ||
const CFStringRef kMIDIPropertyConnectionUniqueID = nil; | ||
const CFStringRef kMIDIPropertyUniqueID = nil; | ||
|
||
/* Timing */ | ||
const CFStringRef kMIDIPropertyAdvanceScheduleTimeMuSec = nil; | ||
|
||
/* Connections */ | ||
const CFStringRef kMIDIPropertyConnectionUniqueID = nil; |