After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 366572 - Bad declaration in headerfile
Bad declaration in headerfile
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
0.10.10
Other Windows
: Normal blocker
: 0.10.11
Assigned To: Wim Taymans
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2006-10-28 23:56 UTC by gorshkov
Modified: 2006-10-30 07:51 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description gorshkov 2006-10-28 23:56:14 UTC
Line 312, in gstinfo.h

#ifndef WIN32
#define GST_DEBUG_CATEGORY_EXTERN(cat) extern GstDebugCategory *cat
#else
#define GST_DEBUG_CATEGORY_EXTERN(cat) \
  extern _declspec (dllimport) GstDebugCategory *cat;
#endif

_declspec should be __declspec (two underscores, not one)
Comment 1 Wim Taymans 2006-10-30 07:51:28 UTC
        Patch by: gorshkov <gorshkov at oghma dot on dot ca>

        * gst/gstinfo.h:
        _declspec should be __declspec (two underscores, not one). Fixes 366572.