From: evpobr Date: Sat, 18 May 2019 04:42:26 +0000 (+0500) Subject: Mark KaxInternalBlock as exported X-Git-Tag: release-1.5.1~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8e05d65e1e75f0ec7e5981053805b9ca36b051d;p=libmatroska Mark KaxInternalBlock as exported Classes derived from KaxInternalBlock are exported, but KaxInternalBlock is not. Fixes compiler warning. --- diff --git a/matroska/KaxBlock.h b/matroska/KaxBlock.h index 38e164a..2d5d39b 100644 --- a/matroska/KaxBlock.h +++ b/matroska/KaxBlock.h @@ -205,7 +205,7 @@ DECLARE_MKX_MASTER(KaxBlockGroup) const KaxTrackEntry * ParentTrack; }; -class KaxInternalBlock : public EbmlBinary { +class MATROSKA_DLL_API KaxInternalBlock : public EbmlBinary { public: KaxInternalBlock(EBML_DEF_CONS EBML_DEF_SEP bool bSimple EBML_DEF_SEP EBML_EXTRA_PARAM) :EBML_DEF_BINARY_INIT EBML_DEF_SEP bLocalTimecodeUsed(false), mLacing(LACING_AUTO), mInvisible(false) ,ParentCluster(NULL), bIsSimple(bSimple), bIsKeyframe(true), bIsDiscardable(false)