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.

23 lines
542B

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