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.

43 lines
1.8KB

  1. /*
  2. ==============================================================================
  3. This file contains values that describe your plugin's behaviour.
  4. ==============================================================================
  5. */
  6. //==============================================================================
  7. #define JuceBrowserPlugin_Company "ROLI Ltd"
  8. #define JuceBrowserPlugin_Name "Juce Plugin Demo!"
  9. #define JuceBrowserPlugin_Desc "Juce Browser Plugin Demo!"
  10. //==============================================================================
  11. /** This should be the same version number, in different forms..
  12. */
  13. #define JuceBrowserPlugin_Version "0.1"
  14. #define JuceBrowserPlugin_WinVersion 0, 0, 1, 0
  15. //==============================================================================
  16. /** This is the mime-type of the plugin.
  17. In your HTML, this is the 'type' parameter of the embed tag, e.g.
  18. <embed id="plugin" type="application/npjucedemo-plugin" width=90% height=500>
  19. These two macros must be the same string, but the "raw" one shouldn't have quotes around it.
  20. */
  21. #define JuceBrowserPlugin_MimeType_Raw application/npjucedemo-plugin
  22. #define JuceBrowserPlugin_MimeType "application/npjucedemo-plugin"
  23. //==============================================================================
  24. /** Because plugins are associated with a file-type, this is the suffix of the file type the plugin
  25. can open. If you don't need to use it, just use a made-up name here.
  26. */
  27. #define JuceBrowserPlugin_FileSuffix ".jucedemo"
  28. /** If you're building an activeX version, you'll need to create a unique GUID for
  29. your plugin. Use a tool like uuidgen.exe to create this.
  30. */
  31. #define JuceBrowserPlugin_ActiveXCLSID "F683B990-3ADF-11DE-BDFE-F9CB55D89593"