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.

appDetails.h 610B

10 years ago
123456789101112131415161718192021222324
  1. #ifndef __APP_DETAILS_H__
  2. #define __APP_DETAILS_H__
  3. #include "../../../../source/includes/CarlaDefines.h"
  4. #define SFX_APP_VERSION CARLA_VERSION_STRING
  5. #define SFX_APP_BANNER "CarlaControl self-contained executable " SFX_APP_VERSION ", based on UnZipSFX."
  6. #ifndef SFX_APP_MININAME
  7. # define SFX_APP_MININAME "CarlaControl"
  8. #endif
  9. #ifdef WIN32
  10. # define SFX_AUTORUN_CMD "\\" SFX_APP_MININAME ".exe"
  11. #else
  12. # define SFX_AUTORUN_CMD "./" SFX_APP_MININAME
  13. #endif
  14. void sfx_app_set_args(int argc, char** argv);
  15. int sfx_app_autorun_now();
  16. char* sfx_get_tmp_path(int withAppName);
  17. #endif // __APP_DETAILS_H__