<div dir="ltr"><div>I created a chugin for Windows that does VST effects and instruments all in one. <a href="https://github.com/ccrma/chugins/pull/47">https://github.com/ccrma/chugins/pull/47</a></div><div><br></div><div>Sample code:</div><div><br></div><div>VST vst =&gt; dac;<br><br>vst.loadPlugin(&quot;C:/VSTPlugIns/Serum_x64.dll&quot;);<br>&lt;&lt;&lt; &quot;num parameters: &quot;, vst.getNumParameters() &gt;&gt;&gt;;<br>&lt;&lt;&lt; &quot;parameter 0 is named: &quot;, vst.getParameterName(0) &gt;&gt;&gt;;<br>vst.loadPreset(&quot;serum_preset.fxp&quot;);<br>vst.setParameter(0, vst.getParameter(0));<br><br>while(true) {<br>    vst.noteOn(60, 1.);<br>    200::ms =&gt; now;<br>    vst.noteOff(60, 0.);<br>    250::ms =&gt; now;<br>}<br></div><div><br></div><div>Please checkout the branch (literally) and try it out!</div><div><br></div><div>David</div></div>