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
597B

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