diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-09 17:41:45 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-09 17:41:45 +0000 |
commit | ab481384d1d547c4f8794489f95b3ddf28c8e17a (patch) | |
tree | dd0dc6b7f34f7a9d0617c8a9e803a0ae9557369b /include | |
parent | bcda5705f92fc221ebf07dbd278c0a09b01dbc2f (diff) | |
download | xine-lib-ab481384d1d547c4f8794489f95b3ddf28c8e17a.tar.gz xine-lib-ab481384d1d547c4f8794489f95b3ddf28c8e17a.tar.bz2 |
Add xine_vlog in xine.c, remove xine_vflog from input_vcd, and do the stdout/stderr output from the two xine_vlog_msg/xine_vlog_err functions that are still local to the input plugin. Centralise log_buffers usage.
CVS patchset: 8211
CVS date: 2006/09/09 17:41:45
Diffstat (limited to 'include')
-rw-r--r-- | include/xine.h.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index f94dfef53..d2cbaf156 100644 --- a/include/xine.h.in +++ b/include/xine.h.in @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine.h.in,v 1.150 2006/08/13 23:51:34 miguelfreitas Exp $ + * $Id: xine.h.in,v 1.151 2006/09/09 17:41:45 dgp85 Exp $ * * public xine-lib (libxine) interface and documentation * @@ -791,9 +791,13 @@ const char *const *xine_get_log_names(xine_t *self); #ifndef __GNUC__ void xine_log (xine_t *self, int buf, const char *format, ...); +void xine_vlog(xine_t *this, int buf, + const char *format, va_list args); #else void xine_log (xine_t *self, int buf, const char *format, ...) __attribute__ ((__format__(printf, 3, 4))); +void xine_vlog(xine_t *this, int buf, + const char *format, va_list args) __attribute__ ((__format__(printf, 3, 0))); #endif /* get log messages of specified section */ |