VST2: Remove old unused scanner/info

This commit is contained in:
Robin Gareus 2021-06-03 16:42:37 +02:00
parent 39fd3ff62a
commit b166db5496
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 0 additions and 1212 deletions

View File

@ -1,70 +0,0 @@
/*
* Copyright (C) 2014-2016 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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__ */

File diff suppressed because it is too large Load Diff