We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0bb5423 + 3431d2b commit c7ec830Copy full SHA for c7ec830
Source/Lib/Lib.cpp
@@ -19,6 +19,8 @@
19
#include <ZenLib/File.h>
20
#if !defined(WINDOWS)
21
#include <unistd.h>
22
+#else
23
+ #include <windows.h>
24
#endif //!defined(WINDOWS)
25
#include <algorithm>
26
Source/Lib/MediaConchDLL.h
@@ -49,7 +49,11 @@ typedef enum MediaConch_report_t
49
report_Max,
50
} MediaConch_report_c;
51
52
+#if defined(_MSC_VER)
53
+#define MEDIACONCH_EXPORT __declspec(dllexport)
54
55
#define MEDIACONCH_EXPORT __attribute__ ((visibility("default")))
56
+#endif
57
58
#ifdef __cplusplus
59
extern "C"
0 commit comments