summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/vst_info_file.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-02-23 05:51:58 +0100
committerRobin Gareus <robin@gareus.org>2014-02-23 05:51:58 +0100
commitbcf6c764625ab4b98e486977ef477deb4f1d64c4 (patch)
tree8a87224ccaa169e9065544e8ab0529fb0722f101 /libs/ardour/ardour/vst_info_file.h
parent7f714ca0366acccd1c9e6d3cc67c5573e4ea1d43 (diff)
consolidate lxVST & winVST file-info code into libardour
first step and clennup before adding support for VST shell-plugins (collections) and external scanner app...
Diffstat (limited to 'libs/ardour/ardour/vst_info_file.h')
-rw-r--r--libs/ardour/ardour/vst_info_file.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/libs/ardour/ardour/vst_info_file.h b/libs/ardour/ardour/vst_info_file.h
new file mode 100644
index 0000000000..2da203a54c
--- /dev/null
+++ b/libs/ardour/ardour/vst_info_file.h
@@ -0,0 +1,38 @@
+/*
+ Copyright (C) 2012-2014 Paul Davis
+ Author: Robin Gareus <robin@gareus.org>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#ifndef __vst_info_file_h__
+#define __vst_info_file_h__
+
+#include "ardour/libardour_visibility.h"
+#include "ardour/vst_types.h"
+
+LIBARDOUR_API extern void vstfx_free_info (VSTInfo *);
+
+#ifdef LXVST_SUPPORT
+LIBARDOUR_API extern VSTInfo * vstfx_get_info_lx (char *);
+#endif
+
+#ifdef WINDOWS_VST_SUPPORT
+LIBARDOUR_API extern VSTInfo * vstfx_get_info_fst (char *);
+#endif
+
+#endif /* __vstfx_h__ */
+