properly retain LV2PluginInfo
[ardour.git] / libs / ardour / ardour / ardour.h
index 02dc3ee15048a8ad63f7b02323d83543daddbbb9..29cfa4b354665cf46f923f90291df11d0f223926 100644 (file)
@@ -22,6 +22,7 @@
 
 #include <map>
 #include <string>
+#include <vector>
 
 #include <limits.h>
 #include <signal.h>
@@ -33,9 +34,9 @@
 #include "pbd/locale_guard.h"
 #include "pbd/stateful.h"
 
+#include "ardour/libardour_visibility.h"
 #include "ardour/types.h"
-
-#include <jack/jack.h> 
+#include "ardour/libardour_visibility.h"
 
 namespace MIDI {
        class MachineControl;
@@ -46,34 +47,40 @@ namespace ARDOUR {
 
        class AudioEngine;
 
-       static const nframes_t max_frames = JACK_MAX_FRAMES;
-       extern PBD::Signal1<void,std::string> BootMessage;
-
-       int init (bool with_vst, bool try_optimization);
-       void init_post_engine ();
-       int cleanup ();
-       bool no_auto_connect ();
-       void make_property_quarks ();
-        
-       extern PBD::PropertyChange bounds_change;
-
-       std::string get_ardour_revision ();
-       extern const char* const ardour_config_info;
-
-       void find_bindings_files (std::map<std::string,std::string>&);
-
-        std::string translation_kill_path ();
-        bool translations_are_disabled ();
-
-       const layer_t max_layer = UCHAR_MAX;
-
-       static inline microseconds_t get_microseconds () {
-               return (microseconds_t) jack_get_time();
-       }
-
-       static const double SHUTTLE_FRACT_SPEED1=0.48412291827; /* derived from A1,A2 */
-
-       void setup_fpu ();
+       extern LIBARDOUR_API PBD::Signal1<void,std::string> BootMessage;
+       extern LIBARDOUR_API PBD::Signal3<void,std::string,std::string,bool> PluginScanMessage;
+       extern LIBARDOUR_API PBD::Signal1<void,int> PluginScanTimeout;
+       extern LIBARDOUR_API PBD::Signal0<void> GUIIdle;
+
+       /**
+        * @param with_vst true to enable VST Support
+        * @param try_optimization true to enable hardware optimized routines
+        * for mixing, finding peak values etc.
+        * @param localedir Directory to look for localisation files
+        *
+        * @return true if Ardour library was successfully initialized
+        */
+       LIBARDOUR_API bool init (bool with_vst, bool try_optimization, const char* localedir);
+       LIBARDOUR_API void init_post_engine ();
+       LIBARDOUR_API void cleanup ();
+       LIBARDOUR_API bool no_auto_connect ();
+       LIBARDOUR_API void make_property_quarks ();
+
+       extern LIBARDOUR_API PBD::PropertyChange bounds_change;
+       
+       extern LIBARDOUR_API const char* const ardour_config_info;
+
+       LIBARDOUR_API void find_bindings_files (std::map<std::string,std::string>&);
+
+       /* these only impact bundled installations */
+       LIBARDOUR_API std::string translation_enable_path ();
+       LIBARDOUR_API bool translations_are_enabled ();
+       LIBARDOUR_API bool set_translations_enabled (bool);
+
+       LIBARDOUR_API microseconds_t get_microseconds ();
+
+       LIBARDOUR_API void setup_fpu ();
+       LIBARDOUR_API std::vector<SyncSource> get_available_sync_options();
 }
 
 #endif /* __ardour_ardour_h__ */