mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
gstconfig.h.in: indent #if #else jungle for better readability
This commit is contained in:
parent
1dbb27f3a7
commit
665de91347
1 changed files with 12 additions and 12 deletions
|
@ -134,19 +134,19 @@
|
||||||
* On other platforms, this gets defined as a no-op.
|
* On other platforms, this gets defined as a no-op.
|
||||||
*/
|
*/
|
||||||
#ifdef _WIN32 /* Both 32-bit and 64-bit; both GCC and MSVC */
|
#ifdef _WIN32 /* Both 32-bit and 64-bit; both GCC and MSVC */
|
||||||
#define GST_PLUGIN_EXPORT __declspec(dllexport) extern
|
# define GST_PLUGIN_EXPORT __declspec(dllexport) extern
|
||||||
#ifdef GST_EXPORTS
|
# ifdef GST_EXPORTS
|
||||||
#define GST_EXPORT __declspec(dllexport) extern
|
# define GST_EXPORT __declspec(dllexport) extern
|
||||||
#else
|
# else
|
||||||
#define GST_EXPORT __declspec(dllimport) extern
|
# define GST_EXPORT __declspec(dllimport) extern
|
||||||
#endif
|
# endif
|
||||||
#else /* !_WIN32 */
|
#else /* !_WIN32 */
|
||||||
#define GST_PLUGIN_EXPORT
|
# define GST_PLUGIN_EXPORT
|
||||||
#if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
|
# if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
|
||||||
#define GST_EXPORT extern __attribute__ ((visibility ("default")))
|
# define GST_EXPORT extern __attribute__ ((visibility ("default")))
|
||||||
#else
|
# else
|
||||||
#define GST_EXPORT extern
|
# define GST_EXPORT extern
|
||||||
#endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* __GST_CONFIG_H__ */
|
#endif /* __GST_CONFIG_H__ */
|
||||||
|
|
Loading…
Reference in a new issue