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.
VST-Plugins in PB?
-
Seymour Clufley
- Addict

- Posts: 1266
- Joined: Wed Feb 28, 2007 9:13 am
- Location: London
Re: VST-Plugins in PB?
I can't help with this, but just wanted to say good luck with it! 
JACK WEBB: "Coding in C is like sculpting a statue using only sandpaper. You can do it, but the result wouldn't be any better. So why bother? Just use the right tools and get the job done."
- Rook Zimbabwe
- Addict

- Posts: 4322
- Joined: Tue Jan 02, 2007 8:16 pm
- Location: Cypress TX
- Contact:
Re: VST-Plugins in PB?
Are you talking about the Virtual Studio or the Video Computing Platform???
Re: VST-Plugins in PB?
I see 2 ways to implement this :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.
- 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 ...).

