aboutsummaryrefslogtreecommitdiff
path: root/include/adlmidi.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/adlmidi.hpp')
-rw-r--r--include/adlmidi.hpp6
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);