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

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