7 lines
168 B
C++
7 lines
168 B
C++
#ifndef _MIDISEQ_EVENTTYPE_HPP_
|
|
#define _MIDISEQ_EVENTTYPE_HPP_
|
|
|
|
enum EventType{MetaEvent=0xFF,SystemExclusiveOne=0xF0,SystemExclusiveTwo=0xF7,NullEvent=0x00};
|
|
|
|
#endif
|