summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/soundseq.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-10-17 10:02:11 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-10-17 10:02:11 -0400
commit24d2b5ec9200bf46ccb42528560de4a02b7be516 (patch)
treeec907784203f04be02cc6410a3e8cb5d6c55c2ab /libs/ardour/ardour/soundseq.h
parenta7f156e005cd6f40ddd99eec394e0db51a62ae7c (diff)
add export visibility macros across libardour
Diffstat (limited to 'libs/ardour/ardour/soundseq.h')
-rw-r--r--libs/ardour/ardour/soundseq.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/soundseq.h b/libs/ardour/ardour/soundseq.h
index ff8e96ad8f..02425a71cf 100644
--- a/libs/ardour/ardour/soundseq.h
+++ b/libs/ardour/ardour/soundseq.h
@@ -26,21 +26,21 @@ namespace ARDOUR {
typedef gint16 peak_datum;
-struct peak_data_t {
+struct LIBARDOUR_API peak_data_t {
peak_datum min;
peak_datum max;
};
const uint32_t frames_per_peak = 2048;
-class Sound : public EDL::Piece {
+class LIBARDOUR_API Sound : public EDL::Piece {
public:
int peak (peak_data_t& pk, uint32_t start, uint32_t cnt);
int read_peaks (peak_data_t *, uint32_t npeaks, uint32_t start, uint32_t cnt);
int build_peak (uint32_t first_frame, uint32_t cnt);
};
-class SoundPlaylist : public EDL::Playlist {
+class LIBARDOUR_API SoundPlaylist : public EDL::Playlist {
public:
int read_peaks (peak_data_t *, uint32_t npeaks, uint32_t start, uint32_t cnt);
};