summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-03-18 19:34:16 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-03-18 19:34:16 +0000
commita19ab2cd8a47639653c1bb9db47f609c916b31b4 (patch)
tree32272c6f5c4184c72aba11d3d2af21c25a57883f /include
parentfc38914b020c0d26436e83e85ebe2c4f1ba0ce06 (diff)
downloadxine-lib-a19ab2cd8a47639653c1bb9db47f609c916b31b4.tar.gz
xine-lib-a19ab2cd8a47639653c1bb9db47f609c916b31b4.tar.bz2
small log api update
CVS patchset: 1587 CVS date: 2002/03/18 19:34:16
Diffstat (limited to 'include')
-rw-r--r--include/xine.h.tmpl.in53
1 files changed, 3 insertions, 50 deletions
diff --git a/include/xine.h.tmpl.in b/include/xine.h.tmpl.in
index b764553ad..488770c08 100644
--- a/include/xine.h.tmpl.in
+++ b/include/xine.h.tmpl.in
@@ -28,7 +28,7 @@
\endverbatim
*/
/*
- * $Id: xine.h.tmpl.in,v 1.87 2002/03/16 13:33:47 esnel Exp $
+ * $Id: xine.h.tmpl.in,v 1.88 2002/03/18 19:34:16 guenter Exp $
*
*/
@@ -1854,65 +1854,18 @@ osd_renderer_t *xine_get_osd_renderer (xine_t *self);
* \defgroup log_group Logging section
* @{
*/
- /**
- * \defgroup log_def log defines.
- * @{
- */
-/**
- * \def XINE_LOG_MSG
- * \sa xine_log()
-*/
-#define XINE_LOG_MSG 0
-/**
- * \def XINE_LOG_INPUT
- * \sa xine_log()
-*/
-#define XINE_LOG_INPUT 1
-/**
- * \def XINE_LOG_DEMUX
- * \sa xine_log()
-*/
-#define XINE_LOG_DEMUX 2
-/**
- * \def XINE_LOG_CODEC
- * \sa xine_log()
-*/
-#define XINE_LOG_CODEC 3
-/**
- * \def XINE_LOG_VIDEO
- * \sa xine_log()
-*/
-#define XINE_LOG_VIDEO 4
-/**
- * \def XINE_LOG_METRONOM
- * \sa xine_log()
-*/
-#define XINE_LOG_METRONOM 5
-/**
- * \def XINE_LOG_PLUGIN
- * \sa xine_log()
-*/
-#define XINE_LOG_PLUGIN 6
-/**
- * \def XINE_LOG_NUM
- * number of log buffers defined *
- * \sa xine_log()
-*/
-#define XINE_LOG_NUM 7
-
- /** @} end of log_def */
/**
* \fn unsigned int xine_get_log_section_count(void)
* \brief return number of available buffers.
* \sa xine_get_log_names(), xine_log(), xine_get_log()
*/
-unsigned int xine_get_log_section_count(void);
+int xine_get_log_section_count(xine_t *self);
/**
* \fn const char **xine_get_log_names(void)
* \brief return a NULL terminated array of log sections names.
* \sa xine_get_log_section_count(), xine_log(), xine_get_log()
*/
-const char **xine_get_log_names(void);
+char **xine_get_log_names(xine_t *self);
/**
* \fn void xine_log (xine_t *self, int buf, const char *format, ...)
* \param self xine object.