From cb3952b5f12c73b8d0ba82dd491a0d678ca365c4 Mon Sep 17 00:00:00 2001 From: Xaymar Date: Fri, 8 Aug 2025 04:47:06 +0200 Subject: [PATCH] Empty field in vst_events_t is likely padding Based on where things are in the structure this is likely to be a remnant of the past. Can't verify that though. --- vst.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vst.h b/vst.h index 9183be6..6b0a7f1 100644 --- a/vst.h +++ b/vst.h @@ -962,8 +962,8 @@ struct vst_events_t { */ int32_t count; - /** @todo Seems to always be zero or left uninitialized. */ - int32_t _unknown_00; + /** @private Reserved, must be zero. */ + int32_t _reserved_00; /** An array of pointers to valid @ref vst_event_t structures. *