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

10 years ago
10 years ago
1234567891011121314151617181920212223
  1. #ifndef __APP_DETAILS_H__
  2. #define __APP_DETAILS_H__
  3. #define REAL_BUILD
  4. #include "../../../../source/includes/CarlaDefines.h"
  5. #define SFX_APP_MININAME_TITLE "Carla"
  6. #define SFX_APP_MININAME_LCASE "carla"
  7. #define SFX_APP_BANNER SFX_APP_MININAME_TITLE " self-contained executable " CARLA_VERSION_STRING ", based on UnZipSFX."
  8. #ifdef WIN32
  9. # define SFX_AUTORUN_CMD "\\" SFX_APP_MININAME_TITLE ".exe"
  10. #else
  11. # define SFX_AUTORUN_CMD "/" SFX_APP_MININAME_LCASE
  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__