diff --git a/vst.h b/vst.h index 9f3d639..1f7cf7a 100644 --- a/vst.h +++ b/vst.h @@ -620,7 +620,7 @@ struct vst_event_t { */ union vst_event_midi_t { /** Shared event structure. */ - vst_event_t event; + struct vst_event_t event; struct { /** @private */ @@ -679,7 +679,7 @@ union vst_event_midi_t { */ union vst_event_midi_sysex_t { /** Shared event structure. */ - vst_event_t event; + struct vst_event_t event; struct { /** @private */ @@ -724,7 +724,7 @@ struct vst_events_t { * * The size of this array is defined by @ref vst_events_t.count. */ - vst_event_t** events; + struct vst_event_t** events; }; //------------------------------------------------------------------------------------------------------------------------