diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-11-20 18:38:08 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-11-20 18:38:08 +0000 |
commit | c653ade786deb157a117ce732574798780bafca5 (patch) | |
tree | 7288fab95112f15cf1ed387116cefacd29219932 | |
parent | fd2108d9c240fd12bfdd91bb94e453e934fe2110 (diff) | |
download | xine-lib-c653ade786deb157a117ce732574798780bafca5.tar.gz xine-lib-c653ade786deb157a117ce732574798780bafca5.tar.bz2 |
these const's are just plain stupid (guess who added them - me)
I hope removing them does not break any compatibility.
CVS patchset: 3320
CVS date: 2002/11/20 18:38:08
-rw-r--r-- | include/xine.h.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/xine.h.in b/include/xine.h.in index aad7a886d..1c97e7833 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.38 2002/11/20 11:57:38 mroi Exp $ + * $Id: xine.h.in,v 1.39 2002/11/20 18:38:08 mroi Exp $ * * public xine-lib (libxine) interface and documentation * @@ -1068,8 +1068,8 @@ void xine_osd_set_text_palette (xine_osd_t *self, int palette_number, int color_base ); /* get palette (color and transparency) */ -void xine_osd_get_palette (xine_osd_t *self, const uint32_t *color, - const uint8_t *trans); +void xine_osd_get_palette (xine_osd_t *self, uint32_t *color, + uint8_t *trans); /* |