mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 22:42:35 +00:00
gst/gstelement.h: Temporary fixing core build breakage due to _gst_element_error_printf being undeclared before the m...
Original commit message from CVS: 2004-01-19 Julien MOUTTE <julien@moutte.net> * gst/gstelement.h: Temporary fixing core build breakage due to _gst_element_error_printf being undeclared before the macro. Thomas please fix that soon !
This commit is contained in:
parent
1a12e752e4
commit
842d3ed37e
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-01-19 Julien MOUTTE <julien@moutte.net>
|
||||
|
||||
* gst/gstelement.h: Temporary fixing core build breakage due to
|
||||
_gst_element_error_printf being undeclared before the macro. Thomas
|
||||
please fix that soon !
|
||||
|
||||
2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* gst/gstelement.c: (_gst_element_error_printf):
|
||||
|
|
|
@ -139,6 +139,8 @@ typedef enum {
|
|||
#define GST_ELEMENT_CLOCK(obj) (((GstElement*)(obj))->clock)
|
||||
#define GST_ELEMENT_PADS(obj) ((obj)->pads)
|
||||
|
||||
gchar * _gst_element_error_printf (const gchar *format, ...);
|
||||
|
||||
#define gst_element_error(el, domain, code, message, debug) G_STMT_START { \
|
||||
gst_element_error_extended (GST_ELEMENT(el), \
|
||||
GST_ ## domain ## _ERROR, GST_ ## domain ## _ERROR_ ## code, \
|
||||
|
|
Loading…
Reference in a new issue