clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit dbe6d48b93aa6aafeec14214e64227d108da9616
parent 22cea9d656f76575004a475ff29d1d1c2ee469e8
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Tue, 21 Oct 2014 14:52:28 +0200

Add playback events (play, pause, stop)

Diffstat:
Minclude/clap/clap.h | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/include/clap/clap.h b/include/clap/clap.h @@ -183,6 +183,10 @@ enum clap_event_type CLAP_EVENT_NEW_PORTS_CONFIGS = 12, // plugin to host, no attribute CLAP_EVENT_LATENCY_CHANGED = 13, // plugin to host, latency attribute + + CLAP_EVENT_PLAY = 14, // no attribute + CLAP_EVENT_PAUSE = 15, // no attribute + CLAP_EVENT_STOP = 16, // no attribute }; struct clap_event_note