1 /*******************************************************************************
2  mod_streaming_export.h
3 
4  Copyright (C) 2009 CodeShop B.V.
5  http://www.code-shop.com
6 
7  For licensing see the LICENSE file
8 ******************************************************************************/
9 
10 #ifndef MOD_STREAMING_EXPORT_H_AKW
11 #define MOD_STREAMING_EXPORT_H_AKW
12 
13 #if defined _WIN32 || defined __CYGWIN__
14   #define MOD_STREAMING_DLL_IMPORT __declspec(dllimport)
15   #define MOD_STREAMING_DLL_EXPORT __declspec(dllexport)
16   #define MOD_STREAMING_DLL_LOCAL
17 #else
18   #if __GNUC__ >= 4
19     #define MOD_STREAMING_DLL_IMPORT __attribute__ ((visibility("default")))
20     #define MOD_STREAMING_DLL_EXPORT __attribute__ ((visibility("default")))
21     #define MOD_STREAMING_DLL_LOCAL  __attribute__ ((visibility("hidden")))
22   #else
23     #define MOD_STREAMING_DLL_IMPORT
24     #define MOD_STREAMING_DLL_EXPORT
25     #define MOD_STREAMING_DLL_LOCAL
26   #endif
27 #endif
28 
29 #define X_MOD_H264_STREAMING_KEY       "X-Mod-H264-Streaming"
30 #define X_MOD_H264_STREAMING_VERSION   "version=2.2.7"
31 
32 #define X_MOD_SMOOTH_STREAMING_KEY     "X-Mod-Smooth-Streaming"
33 #define X_MOD_SMOOTH_STREAMING_VERSION "version=1.0.7"
34 
35 #endif // MOD_STREAMING_EXPORT_H_AKW
36 
37 // End Of File
38 
39