mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
gst/gstinfo.h: Move the Win32 version from gst-plugins-good/gst/avi/avidemux.c to here.
Original commit message from CVS: * gst/gstinfo.h: Move the Win32 version from gst-plugins-good/gst/avi/avidemux.c to here.
This commit is contained in:
parent
82cf674653
commit
090e2e64f0
2 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2006-07-25 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/gstinfo.h:
|
||||
Move the Win32 version from gst-plugins-good/gst/avi/avidemux.c to
|
||||
here.
|
||||
|
||||
2006-07-24 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/gsttaglist.c: (_gst_tag_initialize):
|
||||
|
|
|
@ -305,7 +305,13 @@ void gst_debug_unset_threshold_for_name (const gchar * name);
|
|||
* Declares a GstDebugCategory variable as extern. Use in header files.
|
||||
* This macro expands to nothing if debugging is disabled.
|
||||
*/
|
||||
#ifndef WIN32
|
||||
#define GST_DEBUG_CATEGORY_EXTERN(cat) extern GstDebugCategory *cat
|
||||
#else
|
||||
#define GST_DEBUG_CATEGORY_EXTERN(cat) \
|
||||
extern _declspec (dllimport) GstDebugCategory *cat;
|
||||
#endif
|
||||
|
||||
/**
|
||||
* GST_DEBUG_CATEGORY_STATIC:
|
||||
* @cat: the category
|
||||
|
|
Loading…
Reference in a new issue