Skip to content

Instantly share code, notes, and snippets.

@nikreiman
nikreiman / CallSuspendResume.cpp
Last active September 12, 2019 15:26
Code snippits for creating a VST 2.x plugin host
void resumePlugin(AEffect *plugin) {
dispatcher(plugin, effMainsChanged, 0, 1, NULL, 0.0f);
}
void suspendPlugin(AEffect *plugin) {
dispatcher(plugin, effMainsChanged, 0, 0, NULL, 0.0f);
}