summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/vst_info_file.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-03-05 08:47:54 +0100
committerRobin Gareus <robin@gareus.org>2014-03-05 08:47:54 +0100
commitf3300ec03ce82628aa4eb57565b1c05acb2915e9 (patch)
tree30e5f17ecf1a1f88b628967853cb05d764b81911 /libs/ardour/ardour/vst_info_file.h
parentdd1c397344d8b175bd1cffdf5b6be464cc788bdd (diff)
move vst detection code into ARDOUR namespace
Diffstat (limited to 'libs/ardour/ardour/vst_info_file.h')
-rw-r--r--libs/ardour/ardour/vst_info_file.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libs/ardour/ardour/vst_info_file.h b/libs/ardour/ardour/vst_info_file.h
index 4e646194f0..5e613801a6 100644
--- a/libs/ardour/ardour/vst_info_file.h
+++ b/libs/ardour/ardour/vst_info_file.h
@@ -25,6 +25,10 @@
#include "ardour/vst_types.h"
#include <vector>
+#ifndef VST_SCANNER_APP
+namespace ARDOUR {
+#endif
+
enum VSTScanMode {
VST_SCAN_CACHE_ONLY,
VST_SCAN_USE_APP,
@@ -43,5 +47,9 @@ LIBARDOUR_API extern std::vector<VSTInfo*> * vstfx_get_info_lx (char *, enum VST
LIBARDOUR_API extern std::vector<VSTInfo*> * vstfx_get_info_fst (char *, enum VSTScanMode mode = VST_SCAN_USE_APP);
#endif
+#ifndef VST_SCANNER_APP
+} // namespace
+#endif
+
#endif /* __vstfx_h__ */