Preserve region list selection state even if a region is selected which is not shown...
[ardour.git] / libs / fst / fst.h
index 2a0130667a54974da5c7a3841dbef9d0543c4d42..6ef5acf7946f966a79fcd7dadcf272bec5fa3c68 100644 (file)
@@ -80,8 +80,10 @@ struct _FST
     int        height;
     int                wantIdle;
     int         destroy;
+    int         vst_version;
 
     int                want_program;
+    int         current_program;
     float      *want_params;
     float      *set_params;
 
@@ -105,6 +107,7 @@ extern "C" {
 #endif
 
 extern int        fst_init (void* possible_hmodule);
+extern void       fst_exit ();
 
 extern FSTHandle* fst_load (const char*);
 extern int        fst_unload (FSTHandle*);
@@ -133,6 +136,9 @@ extern int fst_load_state (FST * fst, char * filename);
  */
 extern int fst_save_state (FST * fst, char * filename);
 
+extern int wine_pthread_create (pthread_t* thread_id, const pthread_attr_t* attr, void *(*function)(void*), void* arg);
+
+
 #ifdef __cplusplus
 }
 #endif