From 656c52983319df5dfe0abe82eee441357ca23e91 Mon Sep 17 00:00:00 2001 From: gorshkov Date: Mon, 30 Oct 2006 07:51:13 +0000 Subject: [PATCH] gst/gstinfo.h: _declspec should be __declspec (two underscores, not one). Fixes 366572. Original commit message from CVS: Patch by: gorshkov * gst/gstinfo.h: _declspec should be __declspec (two underscores, not one). Fixes 366572. --- ChangeLog | 7 +++++++ gst/gstinfo.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 17b1b45..9be4cec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-10-30 Wim Taymans + + Patch by: gorshkov + + * gst/gstinfo.h: + _declspec should be __declspec (two underscores, not one). Fixes 366572. + 2006-10-28 Tim-Philipp Müller Patch by: Kjartan Maraas diff --git a/gst/gstinfo.h b/gst/gstinfo.h index 2413d54..57caa6a 100644 --- a/gst/gstinfo.h +++ b/gst/gstinfo.h @@ -325,7 +325,7 @@ void gst_debug_unset_threshold_for_name (const gchar * name); #define GST_DEBUG_CATEGORY_EXTERN(cat) extern GstDebugCategory *cat #else #define GST_DEBUG_CATEGORY_EXTERN(cat) \ - extern _declspec (dllimport) GstDebugCategory *cat; + extern __declspec (dllimport) GstDebugCategory *cat; #endif /** -- 2.7.4