00001 00034 // ################################################################## 00035 // Mutabor 3, Header execute file 00036 // ################################################################## 00037 00038 #ifndef EXECUTE_H 00039 #define EXECUTE_H 00040 00041 #include "box.h" 00042 00043 void KeyboardIn(int box, const mutChar *keys); 00044 00045 void MutResetKeys(); 00046 void GlobalReset(); 00047 00048 void AddKey(int box, int taste, int id); 00049 00050 void DeleteKey(int box, int taste, int id); 00051 00052 void MidiAnalysis(int box, BYTE midiByte); 00053 00054 void protokoll_aktuelles_tonsystem( int instr ); 00055 00056 void protokoll_liegende_frequenzen( int instr ); 00057 00058 void protokoll_aktuelle_relationen( int instr ); 00059 00060 void protokoll_liegende_relationen( int instr ); 00061 00062 void FlushUpdateUI(); 00063 00064 #define FLUSH_UPDATE_UI FlushUpdateUI() 00065 #endif 00066 00067 00068