From c8e05d65e1e75f0ec7e5981053805b9ca36b051d Mon Sep 17 00:00:00 2001 From: evpobr Date: Sat, 18 May 2019 09:42:26 +0500 Subject: [PATCH] Mark KaxInternalBlock as exported Classes derived from KaxInternalBlock are exported, but KaxInternalBlock is not. Fixes compiler warning. --- matroska/KaxBlock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.40.0