#ifndef GEN_H #define GEN_H #include "synth_engine.h" typedef struct { osc_t ** osc; int osci; osc_t ** lfo; int lfoi; adsr_t ** asdr; int adsri; } gen_t; float gen(synth_t * synth, midi_note_t * note, osc_t * osc, sample_rate); #endif /* GEN_H */