diff options
author | cbdev <cb@cbcdn.com> | 2019-09-17 22:13:30 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-09-17 22:13:30 +0200 |
commit | 678396ed4c1a146a110cb15c7b7ad8cf3d6ef224 (patch) | |
tree | 53578de95bb202107ae452813e09139ea96dc053 /backends | |
parent | 1061c4a683df6ccef98c4307860d1c1db323131a (diff) | |
download | midimonster-678396ed4c1a146a110cb15c7b7ad8cf3d6ef224.tar.gz midimonster-678396ed4c1a146a110cb15c7b7ad8cf3d6ef224.tar.bz2 midimonster-678396ed4c1a146a110cb15c7b7ad8cf3d6ef224.zip |
Minor documentation fixes
Diffstat (limited to 'backends')
-rw-r--r-- | backends/winmidi.c | 1 | ||||
-rw-r--r-- | backends/winmidi.md | 5 |
2 files changed, 3 insertions, 3 deletions
diff --git a/backends/winmidi.c b/backends/winmidi.c index dd8442b..e121add 100644 --- a/backends/winmidi.c +++ b/backends/winmidi.c @@ -21,7 +21,6 @@ static struct { .socket_pair = {-1, -1} }; -//TODO allow connect-device specification by index //TODO detect option int init(){ diff --git a/backends/winmidi.md b/backends/winmidi.md index b1fde1e..f648240 100644 --- a/backends/winmidi.md +++ b/backends/winmidi.md @@ -20,11 +20,12 @@ some deviations may still be present. | `read` | `2` | none | MIDI device to connect for input | | `write` | `DeviceName` | none | MIDI device to connect for output | -MIDI device names may either be prefixes of MIDI device names or a numeric index corresponding to the list output at startup using the backend `list` option. +MIDI device names may either be prefixes of MIDI device names or a numeric indices corresponding to the listing shown +at startup when using the global `list` option. #### Channel specification -The MIDI backend supports mapping different MIDI events to MIDIMonster channels. The currently supported event types are +The `winmidi` backend supports mapping different MIDI events as MIDIMonster channels. The currently supported event types are * `cc` - Control Changes * `note` - Note On/Off messages |