1 
2 /*
3  *  Diverse Bristol audio routines.
4  *  Copyright (c) by Nick Copeland <nickycopeland@hotmail.com> 1996,2012
5  *
6  *
7  *   This program is free software; you can redistribute it and/or modify
8  *   it under the terms of the GNU General Public License as published by
9  *   the Free Software Foundation; either version 3 of the License, or
10  *   (at your option) any later version.
11  *
12  *   This program is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with this program; if not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #define M_TRIG 0x0001
23 #define M_GATE 0x0002
24 
25 typedef struct mg1Mods {
26 	unsigned int flags;
27 	float master;
28 	float osc1gain;
29 	float osc2gain;
30 	float noisegain;
31 	float tonemod;
32 	float filtermod;
33 	float filterenv;
34 	float arAutoTransit;
35 	int lfoselect;
36 	int vprocessed;
37 	int gated;
38 
39 	void *lfolocals;
40 } mg1mods;
41 
42