aboutsummaryrefslogtreecommitdiff
path: root/desiredata/src/m_pd.h
diff options
context:
space:
mode:
authorN.N. <matju@users.sourceforge.net>2009-04-24 19:21:05 +0000
committerN.N. <matju@users.sourceforge.net>2009-04-24 19:21:05 +0000
commitfbd822d93345834884674eca5f1ea4ba9e9f1f08 (patch)
treefb1d9391f2cf1617b1024a5c21f1c227a760621e /desiredata/src/m_pd.h
parent36861a284d3879f570f5803df66586c1e50ce143 (diff)
remove gcc 4.2 warnings in binbuf_addv
svn path=/trunk/; revision=11118
Diffstat (limited to 'desiredata/src/m_pd.h')
-rw-r--r--desiredata/src/m_pd.h17
1 files changed, 11 insertions, 6 deletions
diff --git a/desiredata/src/m_pd.h b/desiredata/src/m_pd.h
index 6133f1ee..9ef19a12 100644
--- a/desiredata/src/m_pd.h
+++ b/desiredata/src/m_pd.h
@@ -1,11 +1,16 @@
-/* Copyright (c) 2006-2007 Mathieu Bouchard.
+/* $Id$
+ This file is part of DesireData.
+
+ Copyright (c) 2006,2007,2009 Mathieu Bouchard.
Copyright (c) 1997-1999 Miller Puckette.
For information on usage and redistribution, and for a DISCLAIMER OF ALL
- WARRANTIES, see the file, "LICENSE.txt", in this distribution. */
-
-/* PD_PLUSPLUS_FACE is not considered as part of the main interface for externals,
+ WARRANTIES, see the file, "LICENSE.txt", in this distribution.
+*/
+/*
+ PD_PLUSPLUS_FACE is not considered as part of the main interface for externals,
even though it has become the main interface for internals. please don't rely on
- it outside of the desiredata source code */
+ it outside of the desiredata source code (yet).
+*/
#ifndef __m_pd_h_
@@ -443,7 +448,7 @@ EXTERN void binbuf_gettext(t_binbuf *x, char **bufp, int *lengthp);
EXTERN char *binbuf_gettext2(t_binbuf *x);
EXTERN void binbuf_clear(t_binbuf *x);
EXTERN void binbuf_add(t_binbuf *x, int argc, t_atom *argv);
-EXTERN void binbuf_addv(t_binbuf *x, char *fmt, ...);
+EXTERN void binbuf_addv(t_binbuf *x, const char *fmt, ...);
EXTERN void binbuf_addbinbuf(t_binbuf *x, t_binbuf *y);
EXTERN void binbuf_addsemi(t_binbuf *x);
EXTERN void binbuf_restore(t_binbuf *x, int argc, t_atom *argv);