Fix the missing "extern"
[platform/upstream/gstreamer.git] / win32 / gstconfig.h
1 /* This header interprets the various GST_* macros that are typically   *
2  * provided by the gstreamer-config or gstreamer.pc files.              */
3
4 #ifndef __GST_CONFIG_H__
5 #define __GST_CONFIG_H__
6
7 /***** trick gtk-doc into believing these symbols are defined (yes, it's ugly) */
8
9 #if 0
10 #define GST_DISABLE_LOADSAVE_REGISTRY 1
11 #define GST_DISABLE_GST_DEBUG 1
12 #define GST_DISABLE_LOADSAVE 1
13 #define GST_DISABLE_PARSE 1
14 #define GST_DISABLE_TRACE 1
15 #define GST_DISABLE_ALLOC_TRACE 1
16 #define GST_DISABLE_REGISTRY 1
17 #define GST_DISABLE_ENUMTYPES 1
18 #define GST_DISABLE_INDEX 1
19 #define GST_DISABLE_PLUGIN 1
20 #define GST_DISABLE_URI 1
21 #endif
22
23
24 /***** disabling of subsystems *****/
25
26 /* wether or not the debugging subsystem is enabled */
27 /* #undef GST_DISABLE_GST_DEBUG */
28
29 /* DOES NOT WORK */
30 /* #undef GST_DISABLE_LOADSAVE */
31
32 /* DOES NOT WORK */
33 /* #undef GST_DISABLE_PARSE */
34
35 /* DOES NOT WORK */
36 /* #undef GST_DISABLE_TRACE */
37
38 /* DOES NOT WORK */
39 /* #undef GST_DISABLE_ALLOC_TRACE */
40
41 /* DOES NOT WORK */
42 /* #undef GST_DISABLE_REGISTRY */
43
44 /* DOES NOT WORK */
45 /* #undef GST_DISABLE_ENUMTYPES */
46
47 /* DOES NOT WORK */
48 /* #undef GST_DISABLE_INDEX */
49
50 /* DOES NOT WORK */
51 /* #undef GST_DISABLE_PLUGIN */
52
53 /* DOES NOT WORK */
54 /* #undef GST_DISABLE_URI */
55
56 /* printf extension format */
57 #define GST_PTR_FORMAT "P"
58
59 /* whether or not the CPU supports unaligned access */
60 #define GST_HAVE_UNALIGNED_ACCESS 0
61
62 /***** Deal with XML stuff, we have to handle both loadsave and registry *****/
63
64 #if (! (defined(GST_DISABLE_LOADSAVE) && defined(GST_DISABLE_REGISTRY)) )
65 # include <libxml/parser.h>
66 #else
67 # define GST_DISABLE_LOADSAVE_REGISTRY
68 #endif
69
70 #ifdef WIN32
71 #ifdef GSTREAMER_EXPORTS
72 #define GSTREAMER_EXPORT __declspec(dllexport) extern
73 #else
74 #define GSTREAMER_EXPORT __declspec(dllimport) extern
75 #endif
76 #else
77 #define GSTREAMER_EXPORT extern
78 #endif
79
80 #endif /* __GST_CONFIG_H__ */