summaryrefslogtreecommitdiff
path: root/libs/fst/fst.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-04-16 00:43:41 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-04-16 00:43:41 +0000
commitc2b12f05f4c40319c7fd41ca18d48cee1119826e (patch)
tree7886cb55dd31308cbce24d0338f82a3865d42f08 /libs/fst/fst.h
parent54d9f2f2d83af1f0f44579fe2ebf090e68259938 (diff)
FST code from 2.X branch
git-svn-id: svn://localhost/ardour2/branches/3.0@4981 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/fst/fst.h')
-rw-r--r--libs/fst/fst.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libs/fst/fst.h b/libs/fst/fst.h
index 2a0130667a..6ef5acf794 100644
--- a/libs/fst/fst.h
+++ b/libs/fst/fst.h
@@ -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