The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

20 lines
443B

  1. /*
  2. ==============================================================================
  3. This file contains the basic startup code for a JUCE application.
  4. ==============================================================================
  5. */
  6. %%app_headers%%
  7. //==============================================================================
  8. int main (int argc, char* argv[])
  9. {
  10. // ..your code goes here!
  11. return 0;
  12. }