diff options
Diffstat (limited to 'src/SekaijuApp.h')
-rw-r--r-- | src/SekaijuApp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/SekaijuApp.h b/src/SekaijuApp.h index 131d04c..22efde9 100644 --- a/src/SekaijuApp.h +++ b/src/SekaijuApp.h @@ -368,6 +368,11 @@ public: long m_lMIDIInSyncMode[MAXMIDIINDEVICENUM];
long m_lMIDIOutSyncMode[MAXMIDIOUTDEVICENUM];
+ // MIDI入出力関係(ループバック)
+ // Associates each input port with output port to which
+ // received events are sent. Zero means: no MIDI through for that port.
+ int m_nMIDIThruBinding[MAXMIDIINDEVICENUM];
+
// コントロール状態
BOOL m_bPlaying; // 演奏フラグ (0=停止中,1=演奏中)
BOOL m_bRecording; // 録音フラグ (0=停止中,1=録音中)
|