Add a CLAP plugin type

These aren't handled anywhere yet
This commit is contained in:
Robbert van der Helm
2022-08-24 14:55:57 +02:00
parent 54c506c703
commit 09e6c6494e
2 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ enum class LibArchitecture { dll_32, dll_64 };
* `plugin_type_from_string()` with some invalid value we can use it to
* gracefully show an error message without resorting to exceptions.
*/
enum class PluginType { vst2, vst3, unknown };
enum class PluginType { clap, vst2, vst3, unknown };
template <typename S>
void serialize(S& s, PluginType& plugin_type) {