diff options
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 */ |