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:
@@ -817,6 +817,7 @@ struct vst_host_supports_t {
|
|||||||
|
|
||||||
const char* offline;
|
const char* offline;
|
||||||
|
|
||||||
|
const char* editFile;
|
||||||
const char* openFileSelector;
|
const char* openFileSelector;
|
||||||
const char* closeFileSelector;
|
const char* closeFileSelector;
|
||||||
} /** @private */ vst_host_supports = {
|
} /** @private */ vst_host_supports = {
|
||||||
@@ -832,6 +833,7 @@ struct vst_host_supports_t {
|
|||||||
.sendVstTimeInfo = "sendVstTimeInfo",
|
.sendVstTimeInfo = "sendVstTimeInfo",
|
||||||
.reportConnectionChanges = "reportConnectionChanges",
|
.reportConnectionChanges = "reportConnectionChanges",
|
||||||
.offline = "offline",
|
.offline = "offline",
|
||||||
|
.editFile = "editFile",
|
||||||
.openFileSelector = "openFileSelector",
|
.openFileSelector = "openFileSelector",
|
||||||
.closeFileSelector = "closeFileSelector",
|
.closeFileSelector = "closeFileSelector",
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user