summaryrefslogtreecommitdiff
path: root/src/xine-engine/scratch.h
diff options
context:
space:
mode:
authorMichael Roitzsch <mroi@users.sourceforge.net>2002-09-06 18:13:10 +0000
committerMichael Roitzsch <mroi@users.sourceforge.net>2002-09-06 18:13:10 +0000
commit6c4cd36cc5ced530a387327c4f6c576074424c6c (patch)
tree335cf36c9732583e317983a126ec508e2d08ce0b /src/xine-engine/scratch.h
parent75dc355377ef3cc01cfec10a1872ad64eee154ae (diff)
downloadxine-lib-6c4cd36cc5ced530a387327c4f6c576074424c6c.tar.gz
xine-lib-6c4cd36cc5ced530a387327c4f6c576074424c6c.tar.bz2
introduce "const"
fix some input plugins that would not copy the mrl on open CVS patchset: 2623 CVS date: 2002/09/06 18:13:10
Diffstat (limited to 'src/xine-engine/scratch.h')
-rw-r--r--src/xine-engine/scratch.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/xine-engine/scratch.h b/src/xine-engine/scratch.h
index 4390641a8..34f60067b 100644
--- a/src/xine-engine/scratch.h
+++ b/src/xine-engine/scratch.h
@@ -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: scratch.h,v 1.3 2002/03/01 09:29:50 guenter Exp $
+ * $Id: scratch.h,v 1.4 2002/09/06 18:13:12 mroi Exp $
*
* scratch buffer for log output
*
@@ -32,17 +32,17 @@ typedef struct scratch_buffer_s scratch_buffer_t;
struct scratch_buffer_s {
- void (*scratch_printf) (scratch_buffer_t *this, const char *format, va_list ap);
+ void (*scratch_printf) (scratch_buffer_t *this, const char *format, va_list ap);
- char **(*get_content) (scratch_buffer_t *this);
+ const char **(*get_content) (scratch_buffer_t *this);
- void (*dispose) (scratch_buffer_t *this);
+ void (*dispose) (scratch_buffer_t *this);
- char **lines;
- char **ordered;
+ char **lines;
+ const char **ordered;
- int num_lines;
- int cur;
+ int num_lines;
+ int cur;
};