File: druminfo.h

package info (click to toggle)
nted 1.10.18-13
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 15,300 kB
  • sloc: cpp: 50,840; ansic: 10,195; sh: 4,552; makefile: 207; sed: 16
file content (18 lines) | stat: -rw-r--r-- 302 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef DRUM_INFO_H

#define DRUM_INFO_H

extern struct d_info_str {
	const char *name, *lily_short_name;
	int pitch;
	int note_head;
	const char *modifier;
	int line;
} default_dinfo[], current_dinfo[];

int getNumberOfDrumTabElements();

void make_default_drums_current();


#endif /* DRUM_INFO_H */