1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-03 00:59:43 +02:00

Expose LabelTrack stuff to DLL interface, per "Developing an Plug-in that charges labels and cues from a wav file" thread on audacity-devel.

This commit is contained in:
v.audacity 2013-08-22 20:52:56 +00:00
parent 077e18372b
commit 0670dbc753

View File

@ -86,14 +86,15 @@ public:
bool updated; /// flag to tell if the label times were updated
};
WX_DEFINE_ARRAY(LabelStruct *, LabelArray);
AUDACITY_DLL_API WX_DEFINE_ARRAY(LabelStruct *, LabelArray);
const int NUM_GLYPH_CONFIGS = 3;
const int NUM_GLYPH_HIGHLIGHTS = 4;
const int MAX_NUM_ROWS =80;
class LabelTrack:public Track {
class AUDACITY_DLL_API LabelTrack : public Track
{
friend class LabelStruct;
public: