ardour
linux_vst_support.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2012 Paul Davis
3 
4  This program is free software; you can redistribute it and/or modify
5  it under the terms of the GNU General Public License as published by
6  the Free Software Foundation; either version 2 of the License, or
7  (at your option) any later version.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with this program; if not, write to the Free Software
16  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 
18 */
19 
20 #ifndef __vstfx_h__
21 #define __vstfx_h__
22 
23 #include <setjmp.h>
24 #include <signal.h>
25 #include <pthread.h>
26 #include <stdio.h>
27 
29 #include "ardour/vst_types.h"
30 
31 /******************************************************************************************/
32 /*VSTFX - an engine to manage native linux VST plugins - derived from FST for Windows VSTs*/
33 /******************************************************************************************/
34 
35 LIBARDOUR_API extern void (*vstfx_error_callback)(const char *msg);
36 
37 LIBARDOUR_API void vstfx_set_error_function (void (*func)(const char *));
38 
39 LIBARDOUR_API void vstfx_error (const char *fmt, ...);
40 
41 /*API to vstfx*/
42 
44 LIBARDOUR_API extern int vstfx_init (void *);
45 LIBARDOUR_API extern void vstfx_exit ();
46 LIBARDOUR_API extern VSTHandle * vstfx_load (const char*);
47 LIBARDOUR_API extern int vstfx_unload (VSTHandle *);
48 
50 LIBARDOUR_API extern void vstfx_close (VSTState*);
51 
55 
57 LIBARDOUR_API extern int vstfx_call_dispatcher (VSTState *, int, int, int, void *, float);
58 
61 LIBARDOUR_API extern int vstfx_load_state (VSTState* vstfx, char * filename);
62 
65 LIBARDOUR_API extern bool vstfx_save_state (VSTState* vstfx, char * filename);
66 
67 #endif /* __vstfx_h__ */
intptr_t(* audioMasterCallback)(AEffect *, int32_t, int32_t, intptr_t, void *, float)
Definition: aeffectx.h:329
LIBARDOUR_API void vstfx_exit()
Definition: dummy_lxvst.cc:42
LIBARDOUR_API void vstfx_error(const char *fmt,...)
LIBARDOUR_API int vstfx_run_editor(VSTState *)
LIBARDOUR_API bool vstfx_save_state(VSTState *vstfx, char *filename)
LIBARDOUR_API VSTHandle * vstfx_load(const char *)
LIBARDOUR_API int vstfx_load_state(VSTState *vstfx, char *filename)
LIBARDOUR_API void vstfx_destroy_editor(VSTState *)
Definition: dummy_lxvst.cc:36
LIBARDOUR_API int vstfx_call_dispatcher(VSTState *, int, int, int, void *, float)
LIBARDOUR_API VSTState * vstfx_instantiate(VSTHandle *, audioMasterCallback, void *)
LIBARDOUR_API int vstfx_init(void *)
Definition: dummy_lxvst.cc:6
LIBARDOUR_API int vstfx_unload(VSTHandle *)
#define LIBARDOUR_API
LIBARDOUR_API void vstfx_close(VSTState *)
LIBARDOUR_API void vstfx_event_loop_remove_plugin(VSTState *)
LIBARDOUR_API void vstfx_set_error_function(void(*func)(const char *))
LIBARDOUR_API void(* vstfx_error_callback)(const char *msg)
LIBARDOUR_API int vstfx_create_editor(VSTState *)
LIBARDOUR_API int vstfx_launch_editor(VSTState *)