mirror of
https://github.com/sshlien/abcmidi.git
synced 2025-12-05 22:35:06 +00:00
17 lines
489 B
C
17 lines
489 B
C
/* 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
|