🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.0 KiB

  1. #ifndef EFFECTS_BASE_H
  2. #define EFFECTS_BASE_H
  3. #include "core/effects/base.h"
  4. EffectStateFactory *NullStateFactory_getFactory(void);
  5. EffectStateFactory *ReverbStateFactory_getFactory(void);
  6. EffectStateFactory *StdReverbStateFactory_getFactory(void);
  7. EffectStateFactory *AutowahStateFactory_getFactory(void);
  8. EffectStateFactory *ChorusStateFactory_getFactory(void);
  9. EffectStateFactory *CompressorStateFactory_getFactory(void);
  10. EffectStateFactory *DistortionStateFactory_getFactory(void);
  11. EffectStateFactory *EchoStateFactory_getFactory(void);
  12. EffectStateFactory *EqualizerStateFactory_getFactory(void);
  13. EffectStateFactory *FlangerStateFactory_getFactory(void);
  14. EffectStateFactory *FshifterStateFactory_getFactory(void);
  15. EffectStateFactory *ModulatorStateFactory_getFactory(void);
  16. EffectStateFactory *PshifterStateFactory_getFactory(void);
  17. EffectStateFactory* VmorpherStateFactory_getFactory(void);
  18. EffectStateFactory *DedicatedStateFactory_getFactory(void);
  19. EffectStateFactory *ConvolutionStateFactory_getFactory(void);
  20. #endif /* EFFECTS_BASE_H */