Hi, yesterday I've downloaded QT, because I'm interested in making plugins for FL Studio application, and I need something to handle with GUI. The question is: how to initialize QT without calling app.exec() (this call hungs up my plugin), and with opportunity to use gui widgets and windows? The FL Studio SDK requires one very important function:
extern "C" TFruityPlug * _stdcall CreatePlugInstance(TFruityPlugHost *Host, int Tag)
extern "C" TFruityPlug * _stdcall CreatePlugInstance(TFruityPlugHost *Host, int Tag)
To copy to clipboard, switch view to plain text mode
This function must be exported and returns the TFruityPlug compatible class instance.
It will be great if QT have something like "QTInitialize" or something. Now using app.exec in above mentioned function hungs up everything and plugin is useless.
Thank you in advance for help.
Bookmarks