Struct vst2::api::Events [] [src]

#[repr(C)]
pub struct Events { pub num_events: i32, pub _reserved: isize, pub events: [*mut Event; 2], }

A struct which contains events.

Fields

Number of events.

Reserved for future use. Should be 0.

Variable-length array of pointers to api::Event objects.

The VST standard specifies a variable length array of initial size 2. If there are more than 2 elements a larger array must be stored in this structure.