diff options
author | Vitaly Novichkov <Wohlstand@users.noreply.github.com> | 2020-08-30 14:00:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-30 14:00:15 +0200 |
commit | 82fa5cb3e0859942fc6b353a3138aae8c10520a3 (patch) | |
tree | 28e99c08b430742c719f6b9bda236d29b650ffd8 /include | |
parent | 678be9ff7eb835087a426684a24f0e0172c9178d (diff) | |
parent | 6223286c01b83748f5c92cd21612e9eecc3d7525 (diff) | |
download | libADLMIDI-82fa5cb3e0859942fc6b353a3138aae8c10520a3.tar.gz libADLMIDI-82fa5cb3e0859942fc6b353a3138aae8c10520a3.tar.bz2 libADLMIDI-82fa5cb3e0859942fc6b353a3138aae8c10520a3.zip |
Merge pull request #232 from Wohlstand/wip-new-embedded-banks
Brand new embedded banks database format
Diffstat (limited to 'include')
-rw-r--r-- | include/adlmidi.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/adlmidi.hpp b/include/adlmidi.hpp index dda9c78..0df6dd4 100644 --- a/include/adlmidi.hpp +++ b/include/adlmidi.hpp @@ -31,16 +31,18 @@ struct ADL_MIDIPlayer; class ADLMIDI_DECLSPEC AdlInstrumentTester { struct Impl; - Impl *P; + Impl *p; public: explicit AdlInstrumentTester(ADL_MIDIPlayer *device); virtual ~AdlInstrumentTester(); + void start(); + // Find list of adlib instruments that supposedly implement this GM void FindAdlList(); - void Touch(unsigned c, unsigned volume); void DoNote(int note); + void DoNoteOff(); void NextGM(int offset); void NextAdl(int offset); bool HandleInputChar(char ch); |