mirror of
https://github.com/sshlien/abcmidi.git
synced 2026-02-04 20:58:10 +00:00
2020.12.10
This commit is contained in:
16
abc.h
16
abc.h
@@ -8,6 +8,22 @@ ABC2ABC,
|
||||
YAPS,
|
||||
ABCMATCH} programname;
|
||||
|
||||
typedef enum {
|
||||
TIMESIG_NORMAL,
|
||||
TIMESIG_FREE_METER,
|
||||
TIMESIG_COMMON,
|
||||
TIMESIG_CUT,
|
||||
TIMESIG_COMPLEX
|
||||
} timesig_type_t;
|
||||
|
||||
typedef struct timesig_details {
|
||||
timesig_type_t type;
|
||||
int num;
|
||||
int denom;
|
||||
int complex_values[8];
|
||||
int num_values;
|
||||
} timesig_details_t;
|
||||
|
||||
/* define types of abc object */
|
||||
typedef enum {
|
||||
/* types of bar sign */
|
||||
|
||||
Reference in New Issue
Block a user