From: kramm Date: Wed, 26 Mar 2008 12:53:22 +0000 (+0000) Subject: char* -> const char* X-Git-Tag: buttons-working~368 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=14fdf38060a73b35e6a11e6324da960853875339 char* -> const char* --- diff --git a/lib/devices/opengl.c b/lib/devices/opengl.c index c8efc05..076eefb 100644 --- a/lib/devices/opengl.c +++ b/lib/devices/opengl.c @@ -515,7 +515,7 @@ void opengl_drawchar(gfxdevice_t*dev, gfxfont_t*font, int glyphnr, gfxcolor_t*co -void opengl_drawlink(struct _gfxdevice*dev, gfxline_t*line, char*action) +void opengl_drawlink(struct _gfxdevice*dev, gfxline_t*line, const char*action) { dbg("link"); } @@ -525,12 +525,12 @@ void opengl_endpage(struct _gfxdevice*dev) dbg("endpage"); } -int opengl_result_save(struct _gfxresult*gfx, char*filename) +int opengl_result_save(struct _gfxresult*gfx, const char*filename) { dbg("result:save"); return 0; } -void* opengl_result_get(struct _gfxresult*gfx, char*name) +void* opengl_result_get(struct _gfxresult*gfx, const char*name) { dbg("result:get"); return 0;