├── Description SimpleSynth.docx ├── FrameworkCommon ├── UCDataLayer.pas ├── ULogger.pas └── UVSTBase.pas ├── FruityPlug ├── FP_Def.pas ├── FP_DelphiPlug.pas ├── FP_Extra.pas ├── FP_PlugClass.pas ├── FruityGain_D │ ├── Editor.dcu │ ├── Editor.dfm │ ├── Editor.pas │ ├── FruityGain_D.dpr │ ├── FruityGain_D.dproj │ ├── FruityGain_D.res │ ├── FruityGain_D.stat │ ├── FruityGain_DRuud.dpr │ ├── FruityGain_DRuud.dproj │ ├── FruityGain_DRuud.dproj.local │ ├── FruityGain_DRuud.res │ ├── FruityGain_DRuud_x64.dll │ ├── FruityGain_DRuud_x64.rsm │ ├── FruityGain_D_Icon.ico │ ├── FruityRuudGain.dll │ ├── FruityRuudGain.dpr │ ├── FruityRuudGain.dproj │ ├── FruityRuudGain.dproj.local │ ├── FruityRuudGain.dsk │ ├── FruityRuudGain.identcache │ ├── FruityRuudGain.res │ ├── gain.dcu │ └── gain.pas ├── GenericTransport.pas ├── Internal Controller D │ ├── FruityPlug.dpr │ ├── FruityPlug.dproj │ ├── FruityPlug.res │ ├── FruityPlug_Icon.ico │ ├── SynthForm.dfm │ ├── SynthForm.pas │ ├── SynthRes.dfm │ ├── SynthRes.pas │ └── TestPlug.pas ├── MyFruityPlug.dpr ├── MyFruityPlug.dproj ├── MyFruityPlug.dproj.local ├── MyFruityPlug.dsk ├── MyFruityPlug.identcache ├── MyFruityPlug.res ├── MyFruityPlug.stat ├── Osc3_D │ ├── SynthForm.dcu │ ├── SynthForm.dfm │ ├── SynthForm.pas │ ├── SynthRes.dcu │ ├── SynthRes.dfm │ ├── SynthRes.pas │ ├── TestPlug.dcu │ ├── TestPlug.pas │ ├── UVSTInstrument.dcu │ ├── UVSTInstrument.pas │ ├── __history │ │ ├── UVSTInstrument.pas.~39~ │ │ ├── UVSTInstrument.pas.~40~ │ │ ├── UVSTInstrument.pas.~41~ │ │ ├── UVSTInstrument.pas.~42~ │ │ ├── UVSTInstrument.pas.~43~ │ │ ├── UVSTInstrument.pas.~44~ │ │ ├── UVSTInstrument.pas.~45~ │ │ ├── UVSTInstrument.pas.~46~ │ │ ├── UVSTInstrument.pas.~47~ │ │ └── UVSTInstrument.pas.~48~ │ ├── osc3_d.dpr │ ├── osc3_d.dproj │ ├── osc3_d.res │ ├── osc3_d.stat │ ├── osc3_dRuud.dpr │ ├── osc3_dRuud.dproj │ ├── osc3_dRuud.dproj.local │ ├── osc3_dRuud.res │ ├── osc3_dRuud_x64.dll │ └── osc3_dRuud_x64.rsm ├── Sine D │ ├── FruityPlug.dpr │ ├── FruityPlug.dproj │ ├── FruityPlug.res │ ├── FruityPlug_Icon.ico │ ├── SynthForm.dfm │ ├── SynthForm.pas │ └── TestPlug.pas └── UVSTInstrument.pas ├── RMSVST3 ├── RMSMyVST3.dpr ├── RMSMyVST3.dproj ├── RMSMyVST3.dsk ├── RMSMyVST3.identcache ├── RMSMyVST3.res ├── RMSMyVST3.stat ├── RMSMyVST3ForFP.dpr ├── RMSMyVST3ForFP.dproj ├── RMSMyVST3ForFP.dproj.local ├── RMSMyVST3ForFP.identcache ├── RMSMyVST3ForFP.res ├── RMSMyVST3ForFP.stat ├── UCAudioProcessor.pas ├── UCComponent.pas ├── UCEditController.pas ├── UCMidiMapping.pas ├── UCPlugView.pas ├── UCPluginFactory.pas ├── UCUnitInfo.pas ├── UVST3Controller.pas ├── UVST3Processor.pas ├── UVST3Utils.pas ├── UVSTBase.pas ├── UVSTInstrument.pas └── Vst3Base.pas ├── Readme.MD ├── SimpleSynthCommon ├── UMyVSTForm.dfm ├── UMyVSTForm.pas ├── UMyVst.pas ├── UMyVstDSP.pas └── UPianoKeyboard.pas ├── TVSTInstrument API.docx └── license.txt /Description SimpleSynth.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/Description SimpleSynth.docx -------------------------------------------------------------------------------- /FrameworkCommon/UCDataLayer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FrameworkCommon/UCDataLayer.pas -------------------------------------------------------------------------------- /FrameworkCommon/ULogger.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FrameworkCommon/ULogger.pas -------------------------------------------------------------------------------- /FrameworkCommon/UVSTBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FrameworkCommon/UVSTBase.pas -------------------------------------------------------------------------------- /FruityPlug/FP_Def.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FP_Def.pas -------------------------------------------------------------------------------- /FruityPlug/FP_DelphiPlug.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FP_DelphiPlug.pas -------------------------------------------------------------------------------- /FruityPlug/FP_Extra.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FP_Extra.pas -------------------------------------------------------------------------------- /FruityPlug/FP_PlugClass.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FP_PlugClass.pas -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/Editor.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/Editor.dcu -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/Editor.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/Editor.dfm -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/Editor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/Editor.pas -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityGain_D.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityGain_D.dpr -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityGain_D.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityGain_D.dproj -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityGain_D.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityGain_D.res -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityGain_D.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityGain_D.stat -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityGain_DRuud.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityGain_DRuud.dpr -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityGain_DRuud.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityGain_DRuud.dproj -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityGain_DRuud.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityGain_DRuud.dproj.local -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityGain_DRuud.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityGain_DRuud.res -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityGain_DRuud_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityGain_DRuud_x64.dll -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityGain_DRuud_x64.rsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityGain_DRuud_x64.rsm -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityGain_D_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityGain_D_Icon.ico -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityRuudGain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityRuudGain.dll -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityRuudGain.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityRuudGain.dpr -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityRuudGain.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityRuudGain.dproj -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityRuudGain.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityRuudGain.dproj.local -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityRuudGain.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityRuudGain.dsk -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityRuudGain.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityRuudGain.identcache -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/FruityRuudGain.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/FruityRuudGain.res -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/gain.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/gain.dcu -------------------------------------------------------------------------------- /FruityPlug/FruityGain_D/gain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/FruityGain_D/gain.pas -------------------------------------------------------------------------------- /FruityPlug/GenericTransport.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/GenericTransport.pas -------------------------------------------------------------------------------- /FruityPlug/Internal Controller D/FruityPlug.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Internal Controller D/FruityPlug.dpr -------------------------------------------------------------------------------- /FruityPlug/Internal Controller D/FruityPlug.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Internal Controller D/FruityPlug.dproj -------------------------------------------------------------------------------- /FruityPlug/Internal Controller D/FruityPlug.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Internal Controller D/FruityPlug.res -------------------------------------------------------------------------------- /FruityPlug/Internal Controller D/FruityPlug_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Internal Controller D/FruityPlug_Icon.ico -------------------------------------------------------------------------------- /FruityPlug/Internal Controller D/SynthForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Internal Controller D/SynthForm.dfm -------------------------------------------------------------------------------- /FruityPlug/Internal Controller D/SynthForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Internal Controller D/SynthForm.pas -------------------------------------------------------------------------------- /FruityPlug/Internal Controller D/SynthRes.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Internal Controller D/SynthRes.dfm -------------------------------------------------------------------------------- /FruityPlug/Internal Controller D/SynthRes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Internal Controller D/SynthRes.pas -------------------------------------------------------------------------------- /FruityPlug/Internal Controller D/TestPlug.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Internal Controller D/TestPlug.pas -------------------------------------------------------------------------------- /FruityPlug/MyFruityPlug.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/MyFruityPlug.dpr -------------------------------------------------------------------------------- /FruityPlug/MyFruityPlug.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/MyFruityPlug.dproj -------------------------------------------------------------------------------- /FruityPlug/MyFruityPlug.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/MyFruityPlug.dproj.local -------------------------------------------------------------------------------- /FruityPlug/MyFruityPlug.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/MyFruityPlug.dsk -------------------------------------------------------------------------------- /FruityPlug/MyFruityPlug.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/MyFruityPlug.identcache -------------------------------------------------------------------------------- /FruityPlug/MyFruityPlug.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/MyFruityPlug.res -------------------------------------------------------------------------------- /FruityPlug/MyFruityPlug.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/MyFruityPlug.stat -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/SynthForm.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/SynthForm.dcu -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/SynthForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/SynthForm.dfm -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/SynthForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/SynthForm.pas -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/SynthRes.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/SynthRes.dcu -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/SynthRes.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/SynthRes.dfm -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/SynthRes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/SynthRes.pas -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/TestPlug.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/TestPlug.dcu -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/TestPlug.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/TestPlug.pas -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/UVSTInstrument.dcu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/UVSTInstrument.dcu -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/UVSTInstrument.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/UVSTInstrument.pas -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~39~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~39~ -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~40~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~40~ -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~41~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~41~ -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~42~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~42~ -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~43~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~43~ -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~44~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~44~ -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~45~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~45~ -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~46~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~46~ -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~47~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~47~ -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~48~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/__history/UVSTInstrument.pas.~48~ -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/osc3_d.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/osc3_d.dpr -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/osc3_d.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/osc3_d.dproj -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/osc3_d.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/osc3_d.res -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/osc3_d.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/osc3_d.stat -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/osc3_dRuud.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/osc3_dRuud.dpr -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/osc3_dRuud.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/osc3_dRuud.dproj -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/osc3_dRuud.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/osc3_dRuud.dproj.local -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/osc3_dRuud.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/osc3_dRuud.res -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/osc3_dRuud_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/osc3_dRuud_x64.dll -------------------------------------------------------------------------------- /FruityPlug/Osc3_D/osc3_dRuud_x64.rsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Osc3_D/osc3_dRuud_x64.rsm -------------------------------------------------------------------------------- /FruityPlug/Sine D/FruityPlug.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Sine D/FruityPlug.dpr -------------------------------------------------------------------------------- /FruityPlug/Sine D/FruityPlug.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Sine D/FruityPlug.dproj -------------------------------------------------------------------------------- /FruityPlug/Sine D/FruityPlug.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Sine D/FruityPlug.res -------------------------------------------------------------------------------- /FruityPlug/Sine D/FruityPlug_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Sine D/FruityPlug_Icon.ico -------------------------------------------------------------------------------- /FruityPlug/Sine D/SynthForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Sine D/SynthForm.dfm -------------------------------------------------------------------------------- /FruityPlug/Sine D/SynthForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Sine D/SynthForm.pas -------------------------------------------------------------------------------- /FruityPlug/Sine D/TestPlug.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/Sine D/TestPlug.pas -------------------------------------------------------------------------------- /FruityPlug/UVSTInstrument.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/FruityPlug/UVSTInstrument.pas -------------------------------------------------------------------------------- /RMSVST3/RMSMyVST3.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/RMSMyVST3.dpr -------------------------------------------------------------------------------- /RMSVST3/RMSMyVST3.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/RMSMyVST3.dproj -------------------------------------------------------------------------------- /RMSVST3/RMSMyVST3.dsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/RMSMyVST3.dsk -------------------------------------------------------------------------------- /RMSVST3/RMSMyVST3.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/RMSMyVST3.identcache -------------------------------------------------------------------------------- /RMSVST3/RMSMyVST3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/RMSMyVST3.res -------------------------------------------------------------------------------- /RMSVST3/RMSMyVST3.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/RMSMyVST3.stat -------------------------------------------------------------------------------- /RMSVST3/RMSMyVST3ForFP.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/RMSMyVST3ForFP.dpr -------------------------------------------------------------------------------- /RMSVST3/RMSMyVST3ForFP.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/RMSMyVST3ForFP.dproj -------------------------------------------------------------------------------- /RMSVST3/RMSMyVST3ForFP.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/RMSMyVST3ForFP.dproj.local -------------------------------------------------------------------------------- /RMSVST3/RMSMyVST3ForFP.identcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/RMSMyVST3ForFP.identcache -------------------------------------------------------------------------------- /RMSVST3/RMSMyVST3ForFP.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/RMSMyVST3ForFP.res -------------------------------------------------------------------------------- /RMSVST3/RMSMyVST3ForFP.stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/RMSMyVST3ForFP.stat -------------------------------------------------------------------------------- /RMSVST3/UCAudioProcessor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/UCAudioProcessor.pas -------------------------------------------------------------------------------- /RMSVST3/UCComponent.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/UCComponent.pas -------------------------------------------------------------------------------- /RMSVST3/UCEditController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/UCEditController.pas -------------------------------------------------------------------------------- /RMSVST3/UCMidiMapping.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/UCMidiMapping.pas -------------------------------------------------------------------------------- /RMSVST3/UCPlugView.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/UCPlugView.pas -------------------------------------------------------------------------------- /RMSVST3/UCPluginFactory.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/UCPluginFactory.pas -------------------------------------------------------------------------------- /RMSVST3/UCUnitInfo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/UCUnitInfo.pas -------------------------------------------------------------------------------- /RMSVST3/UVST3Controller.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/UVST3Controller.pas -------------------------------------------------------------------------------- /RMSVST3/UVST3Processor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/UVST3Processor.pas -------------------------------------------------------------------------------- /RMSVST3/UVST3Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/UVST3Utils.pas -------------------------------------------------------------------------------- /RMSVST3/UVSTBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/UVSTBase.pas -------------------------------------------------------------------------------- /RMSVST3/UVSTInstrument.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/UVSTInstrument.pas -------------------------------------------------------------------------------- /RMSVST3/Vst3Base.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/RMSVST3/Vst3Base.pas -------------------------------------------------------------------------------- /Readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/Readme.MD -------------------------------------------------------------------------------- /SimpleSynthCommon/UMyVSTForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/SimpleSynthCommon/UMyVSTForm.dfm -------------------------------------------------------------------------------- /SimpleSynthCommon/UMyVSTForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/SimpleSynthCommon/UMyVSTForm.pas -------------------------------------------------------------------------------- /SimpleSynthCommon/UMyVst.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/SimpleSynthCommon/UMyVst.pas -------------------------------------------------------------------------------- /SimpleSynthCommon/UMyVstDSP.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/SimpleSynthCommon/UMyVstDSP.pas -------------------------------------------------------------------------------- /SimpleSynthCommon/UPianoKeyboard.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/SimpleSynthCommon/UPianoKeyboard.pas -------------------------------------------------------------------------------- /TVSTInstrument API.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/TVSTInstrument API.docx -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RuudErmers/RMSVST3/HEAD/license.txt --------------------------------------------------------------------------------