Page 1 of 1

VST-Plugins in PB?

Posted: Fri Feb 05, 2010 11:31 am
by eriansa
Has anyone been able to make a VST-plugin in PB?

AFAIK it should be possible: we have DLL, we have WindowCallbacks() (WaitWindowEvent() is a no-go here), MultiThread...

Perhaps there are other things to consider before I start to translate the VST-Sdk?

P.s.
I already made a Vst-AsioHost in PB.

Re: VST-Plugins in PB?

Posted: Sat Feb 06, 2010 12:07 am
by Seymour Clufley
I can't help with this, but just wanted to say good luck with it! :)

Re: VST-Plugins in PB?

Posted: Sat Feb 06, 2010 12:46 am
by Rook Zimbabwe
Are you talking about the Virtual Studio or the Video Computing Platform???

Re: VST-Plugins in PB?

Posted: Sat Feb 06, 2010 11:04 am
by KarLKoX
eriansa wrote:Has anyone been able to make a VST-plugin in PB?

AFAIK it should be possible: we have DLL, we have WindowCallbacks() (WaitWindowEvent() is a no-go here), MultiThread...

Perhaps there are other things to consider before I start to translate the VST-Sdk?

P.s.
I already made a Vst-AsioHost in PB.
I see 2 ways to implement this :

- easiest : create a dll bridge wich implement a VST plugin wich call PB function from outside,
- normal : translate all the SDK wich will not be very easy as it is true C++ code (Interface, Class, Namespace ...).