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.

24 lines
501B

  1. #include "rack.hpp"
  2. using namespace rack;
  3. RACK_PLUGIN_DECLARE(mscHack);
  4. #ifdef USE_VST2
  5. #define plugin "mscHack"
  6. #endif // USE_VST2
  7. #include "CLog.h"
  8. #include "mscHack_Controls.hpp"
  9. #define CV_MAX (10.0f)
  10. #define AUDIO_MAX (6.0f)
  11. #define VOCT_MAX (6.0f)
  12. #define AMP_MAX (2.0f)
  13. #define TOJSON true
  14. #define FROMJSON false
  15. void JsonDataInt( bool bTo, std::string strName, json_t *root, int *pdata, int len );
  16. void JsonDataBool( bool bTo, std::string strName, json_t *root, bool *pdata, int len );