summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/linux_vst_support.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-09-16 22:05:43 +0200
committerRobin Gareus <robin@gareus.org>2016-09-16 22:05:43 +0200
commit8e36e9bf053eb6b880a3ab6c8039d2158cd3ca7a (patch)
tree06ed58be0c965aa8f6ae9369a9f8b6f0fa98b324 /libs/ardour/ardour/linux_vst_support.h
parent0996656eccceccccc4eea7ec74bfe60559ee2fff (diff)
remove cruft - don't pollute global namespace
* remove unused functions * don't globally export C functions that are only used locally
Diffstat (limited to 'libs/ardour/ardour/linux_vst_support.h')
-rw-r--r--libs/ardour/ardour/linux_vst_support.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/libs/ardour/ardour/linux_vst_support.h b/libs/ardour/ardour/linux_vst_support.h
index 954a465c05..c8724b4ce5 100644
--- a/libs/ardour/ardour/linux_vst_support.h
+++ b/libs/ardour/ardour/linux_vst_support.h
@@ -33,14 +33,11 @@
/******************************************************************************************/
LIBARDOUR_API extern void (*vstfx_error_callback)(const char *msg);
-
-LIBARDOUR_API void vstfx_set_error_function (void (*func)(const char *));
-
LIBARDOUR_API void vstfx_error (const char *fmt, ...);
/*API to vstfx*/
-LIBARDOUR_API extern int vstfx_launch_editor (VSTState *);
+LIBARDOUR_API extern int vstfx_launch_editor (VSTState *);
LIBARDOUR_API extern int vstfx_init (void *);
LIBARDOUR_API extern void vstfx_exit ();
LIBARDOUR_API extern VSTHandle * vstfx_load (const char*);
@@ -54,14 +51,5 @@ LIBARDOUR_API extern int vstfx_run_editor (VSTState *);
LIBARDOUR_API extern void vstfx_destroy_editor (VSTState *);
LIBARDOUR_API extern void vstfx_event_loop_remove_plugin (VSTState *);
-LIBARDOUR_API extern int vstfx_call_dispatcher (VSTState *, int, int, int, void *, float);
-
-/** Load a plugin state from a file.**/
-
-LIBARDOUR_API extern int vstfx_load_state (VSTState* vstfx, char * filename);
-
-/** Save a plugin state to a file.**/
-
-LIBARDOUR_API extern bool vstfx_save_state (VSTState* vstfx, char * filename);
#endif /* __vstfx_h__ */