-fixed includes
This commit is contained in:
@@ -16,6 +16,15 @@
|
|||||||
#include "JaySynthMidiCC.h"
|
#include "JaySynthMidiCC.h"
|
||||||
#include "JaySynth.h"
|
#include "JaySynth.h"
|
||||||
|
|
||||||
|
#include "synth/voice.h"
|
||||||
|
#include "synth/vco.h"
|
||||||
|
#include "synth/noise.h"
|
||||||
|
#include "synth/smooth.h"
|
||||||
|
#include "synth/vcf.h"
|
||||||
|
#include "synth/lfo.h"
|
||||||
|
#include "synth/env.h"
|
||||||
|
#include "synth/param_scale.h"
|
||||||
|
|
||||||
#ifndef max
|
#ifndef max
|
||||||
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -14,6 +14,15 @@
|
|||||||
#include "../JuceLibraryCode/JuceHeader.h"
|
#include "../JuceLibraryCode/JuceHeader.h"
|
||||||
#include "synth/synth_defs.h"
|
#include "synth/synth_defs.h"
|
||||||
|
|
||||||
|
#include "synth/voice.h"
|
||||||
|
#include "synth/vco.h"
|
||||||
|
#include "synth/noise.h"
|
||||||
|
#include "synth/smooth.h"
|
||||||
|
#include "synth/vcf.h"
|
||||||
|
#include "synth/lfo.h"
|
||||||
|
#include "synth/env.h"
|
||||||
|
#include "synth/param_scale.h"
|
||||||
|
|
||||||
//==============================================================================
|
//==============================================================================
|
||||||
#define MIDICONTROLLER_TYPE_VELKEY 0x00000080
|
#define MIDICONTROLLER_TYPE_VELKEY 0x00000080
|
||||||
|
|
||||||
|
|||||||
+10
-1
@@ -24,7 +24,16 @@
|
|||||||
|
|
||||||
//[Headers] -- You can add your own extra header files here --
|
//[Headers] -- You can add your own extra header files here --
|
||||||
#include "../JuceLibraryCode/JuceHeader.h"
|
#include "../JuceLibraryCode/JuceHeader.h"
|
||||||
#include "synth/synth_defs.h"
|
|
||||||
|
#include "synth/voice.h"
|
||||||
|
#include "synth/vco.h"
|
||||||
|
#include "synth/noise.h"
|
||||||
|
#include "synth/smooth.h"
|
||||||
|
#include "synth/vcf.h"
|
||||||
|
#include "synth/lfo.h"
|
||||||
|
#include "synth/env.h"
|
||||||
|
#include "synth/param_scale.h"
|
||||||
|
|
||||||
//[/Headers]
|
//[/Headers]
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -67,15 +67,5 @@ void SynthDebug(const char *fmtstr, ...);
|
|||||||
#define jsy_min(a,b) (((a) < (b)) ? (a) : (b))
|
#define jsy_min(a,b) (((a) < (b)) ? (a) : (b))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#include "voice.h"
|
|
||||||
#include "vco.h"
|
|
||||||
#include "noise.h"
|
|
||||||
#include "smooth.h"
|
|
||||||
#include "vcf.h"
|
|
||||||
#include "lfo.h"
|
|
||||||
#include "env.h"
|
|
||||||
#include "param_scale.h"
|
|
||||||
|
|
||||||
#endif // _SYNTH_DEFS_H_
|
#endif // _SYNTH_DEFS_H_
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user