summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/vst_info_file.h
blob: b9567dec9fd0b9d7ef623f01cf4823b8d344153b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
    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"
#include <vector>

/* Cache File extensions */
# if ( defined(__x86_64__) || defined(_M_X64) )
#  define VST_EXT_BLACKLIST ".fsb64"
#else
#  define VST_EXT_BLACKLIST ".fsb"
#endif

# if ( defined(__x86_64__) || defined(_M_X64) )
#define VST_EXT_INFOFILE  ".fsi64"
#define VST_BLACKLIST  "vst64_blacklist.txt"
#else
#define VST_EXT_INFOFILE  ".fsi32"
#define VST_BLACKLIST  "vst32_blacklist.txt"
#endif

#ifndef VST_SCANNER_APP
namespace ARDOUR {
#endif

enum VSTScanMode {
	VST_SCAN_CACHE_ONLY,
	VST_SCAN_USE_APP,
	VST_SCAN_INTERNAL
};

LIBARDOUR_API extern void vstfx_free_info_list (std::vector<VSTInfo *> *infos);

#ifdef LXVST_SUPPORT
LIBARDOUR_API extern std::vector<VSTInfo*> * vstfx_get_info_lx (char *, enum VSTScanMode mode = VST_SCAN_USE_APP);
#endif

#ifdef WINDOWS_VST_SUPPORT
LIBARDOUR_API extern std::vector<VSTInfo*> * vstfx_get_info_fst (char *, enum VSTScanMode mode = VST_SCAN_USE_APP);
#endif

#ifdef MACVST_SUPPORT
LIBARDOUR_API extern std::vector<VSTInfo*> * vstfx_get_info_mac (char *, enum VSTScanMode mode = VST_SCAN_USE_APP);
#endif

#ifndef VST_SCANNER_APP
} // namespace
#endif

#endif /* __vstfx_h__ */