Add "editFile" to vst_host_supports_t

This one looked like a function lookup for a LoadLibrary call. Turns out it's an actual support query!
This commit is contained in:
Xaymar
2025-08-08 01:24:10 +02:00
parent e81a1f91e2
commit 2551d06b0c
+2
View File
@@ -817,6 +817,7 @@ struct vst_host_supports_t {
const char* offline;
const char* editFile;
const char* openFileSelector;
const char* closeFileSelector;
} /** @private */ vst_host_supports = {
@@ -832,6 +833,7 @@ struct vst_host_supports_t {
.sendVstTimeInfo = "sendVstTimeInfo",
.reportConnectionChanges = "reportConnectionChanges",
.offline = "offline",
.editFile = "editFile",
.openFileSelector = "openFileSelector",
.closeFileSelector = "closeFileSelector",
};