mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
Fix the missing "extern"
Original commit message from CVS: Fix the missing "extern"
This commit is contained in:
parent
2871454788
commit
f4f4c913f1
2 changed files with 6 additions and 6 deletions
|
@ -69,12 +69,12 @@
|
|||
|
||||
#ifdef WIN32
|
||||
#ifdef GSTREAMER_EXPORTS
|
||||
#define GSTREAMER_EXPORT __declspec(dllexport)
|
||||
#define GSTREAMER_EXPORT __declspec(dllexport) extern
|
||||
#else
|
||||
#define GSTREAMER_EXPORT __declspec(dllimport)
|
||||
#define GSTREAMER_EXPORT __declspec(dllimport) extern
|
||||
#endif
|
||||
#else
|
||||
#define GSTREAMER_EXPORT
|
||||
#define GSTREAMER_EXPORT extern
|
||||
#endif
|
||||
|
||||
#endif /* __GST_CONFIG_H__ */
|
||||
|
|
|
@ -69,12 +69,12 @@
|
|||
|
||||
#ifdef WIN32
|
||||
#ifdef GSTREAMER_EXPORTS
|
||||
#define GSTREAMER_EXPORT __declspec(dllexport)
|
||||
#define GSTREAMER_EXPORT __declspec(dllexport) extern
|
||||
#else
|
||||
#define GSTREAMER_EXPORT __declspec(dllimport)
|
||||
#define GSTREAMER_EXPORT __declspec(dllimport) extern
|
||||
#endif
|
||||
#else
|
||||
#define GSTREAMER_EXPORT
|
||||
#define GSTREAMER_EXPORT extern
|
||||
#endif
|
||||
|
||||
#endif /* __GST_CONFIG_H__ */
|
||||
|
|
Loading…
Reference in a new issue