gst/gstinfo.h: _declspec should be __declspec (two underscores, not one). Fixes 366572.
authorgorshkov <gorshkov@oghma.on.ca>
Mon, 30 Oct 2006 07:51:13 +0000 (07:51 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Mon, 30 Oct 2006 07:51:13 +0000 (07:51 +0000)
Original commit message from CVS:
Patch by: gorshkov <gorshkov at oghma dot on dot ca>
* gst/gstinfo.h:
_declspec should be __declspec (two underscores, not one). Fixes 366572.

ChangeLog
gst/gstinfo.h

index 17b1b45..9be4cec 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-10-30  Wim Taymans  <wim@fluendo.com>
+
+       Patch by: gorshkov <gorshkov at oghma dot on dot ca>
+
+       * gst/gstinfo.h:
+       _declspec should be __declspec (two underscores, not one). Fixes 366572.
+
 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
 
        Patch by: Kjartan Maraas  <kmaraas at gnome org>
index 2413d54..57caa6a 100644 (file)
@@ -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
 
 /**