From 2551d06b0cee44bb56105e8bc2ecb5ad7bee379c Mon Sep 17 00:00:00 2001 From: Xaymar Date: Fri, 8 Aug 2025 01:24:10 +0200 Subject: [PATCH] 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! --- vst.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vst.h b/vst.h index 7f631fa..9ba60f5 100644 --- a/vst.h +++ b/vst.h @@ -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", };