first working VST version

This commit is contained in:
Volker Fischer 2010-04-06 18:23:10 +00:00
parent 7c4374e20d
commit 5f7db0880e
2 changed files with 6 additions and 2 deletions

View File

@ -33,7 +33,8 @@ CClient::CClient ( const quint16 iPortNumber ) :
iAudioInFader ( AUD_FADER_IN_MIDDLE ),
iReverbLevel ( 0 ),
bReverbOnLeftChan ( false ),
vstrIPAddress ( MAX_NUM_SERVER_ADDR_ITEMS, "" ), strName ( "" ),
vstrIPAddress ( MAX_NUM_SERVER_ADDR_ITEMS, "" ),
strName ( "" ),
bOpenChatOnNewMessage ( true ),
eGUIDesign ( GD_STANDARD ),
bDoAutoSockBufSize ( true ),

View File

@ -43,7 +43,7 @@ CLlconVST::CLlconVST ( audioMasterCallback AudioMaster ) :
setUniqueID ( 'Llco' );
// capabilities of llcon VST plugin
canProcessReplacing (); // supports replacing output
canProcessReplacing(); // supports replacing output
// set default program name
GetName ( strProgName );
@ -56,6 +56,9 @@ CLlconVST::CLlconVST ( audioMasterCallback AudioMaster ) :
// connect timer event
connect ( &TimerOnOff, SIGNAL ( timeout() ),
this, SLOT ( OnTimerOnOff() ) );
// TODO settings
Client.SetServerAddr ( DEFAULT_SERVER_ADDRESS );
}
bool CLlconVST::GetName ( char* cName )