Audio plugin host https://kx.studio/carla
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.

22 lines
599B

  1. /*************************************************************************************
  2. * Original code copyright (C) 2012 Steve Folta
  3. * Converted to Juce module (C) 2016 Leo Olivers
  4. * Forked from https://github.com/stevefolta/SFZero
  5. * For license info please see the LICENSE file distributed with this source code
  6. *************************************************************************************/
  7. #ifndef SFZDEBUG_H_INCLUDED
  8. #define SFZDEBUG_H_INCLUDED
  9. #include "SFZCommon.h"
  10. #ifdef DEBUG
  11. namespace sfzero
  12. {
  13. void dbgprintf(const char *msg, ...);
  14. }
  15. #endif
  16. #endif // SFZDEBUG_H_INCLUDED