├── .gitignore ├── LICENSE ├── README.md ├── devmidi.cpp ├── devmidi.h ├── devmidi_custom.h ├── midi_wrap.cpp └── midi_wrap.h /.gitignore: -------------------------------------------------------------------------------- 1 | notes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonthefirst/devmidi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonthefirst/devmidi/HEAD/README.md -------------------------------------------------------------------------------- /devmidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonthefirst/devmidi/HEAD/devmidi.cpp -------------------------------------------------------------------------------- /devmidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonthefirst/devmidi/HEAD/devmidi.h -------------------------------------------------------------------------------- /devmidi_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonthefirst/devmidi/HEAD/devmidi_custom.h -------------------------------------------------------------------------------- /midi_wrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonthefirst/devmidi/HEAD/midi_wrap.cpp -------------------------------------------------------------------------------- /midi_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonthefirst/devmidi/HEAD/midi_wrap.h --------------------------------------------------------------------------------