abcMIDI-2020.07.06.zip

This commit is contained in:
Seymour Shlien
2020-07-12 12:40:01 -04:00
commit 0497c9a75b
84 changed files with 66163 additions and 0 deletions

16
parser2.h Normal file
View File

@@ -0,0 +1,16 @@
/* parser2.h */
/* part of abc2midi and yaps */
/* provides further parsing of I: info field */
/* and multiple instruction and gchord fields */
#ifndef KANDR
extern void event_info_key(char *key, char *value);
extern void event_handle_gchord(char *s);
extern void event_handle_instruction(char *s);
extern void event_x_reserved(char s);
#else
extern void event_info_key();
extern void event_handle_gchord();
extern void event_handle_instruction();
extern void event_x_reserved();
#endif