forked from AuroraMiddleware/gtk
Make the arguments to the write/load_increment operations const-correct.
* src/gdk-pixbuf-loader.[ch], src/gdk-pixbuf-io.h: Make the arguments to the write/load_increment operations const-correct.
This commit is contained in:
parent
cacae33871
commit
587d91caad
@ -1,3 +1,7 @@
|
||||
1999-11-02 Elliot Lee <sopwith@redhat.com>
|
||||
* src/gdk-pixbuf-loader.[ch], src/gdk-pixbuf-io.h: Make the arguments to the
|
||||
write/load_increment operations const-correct.
|
||||
|
||||
1999-11-02 Federico Mena Quintero <federico@redhat.com>
|
||||
|
||||
* src/gnome-canvas-pixbuf.c (gnome_canvas_pixbuf_point):
|
||||
|
@ -51,7 +51,7 @@ struct _GdkPixbufModule {
|
||||
/* Incremental loading */
|
||||
gpointer (* begin_load) (ModulePreparedNotifyFunc func, gpointer user_data);
|
||||
void (* stop_load) (gpointer context);
|
||||
gboolean (* load_increment)(gpointer context, guchar *buf, guint size);
|
||||
gboolean (* load_increment)(gpointer context, const gchar *buf, guint size);
|
||||
};
|
||||
|
||||
|
||||
|
@ -273,7 +273,7 @@ gdk_pixbuf_loader_load_module(GdkPixbufLoader *loader)
|
||||
}
|
||||
|
||||
static int
|
||||
gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, guchar *buf, size_t count)
|
||||
gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, const gchar *buf, size_t count)
|
||||
{
|
||||
int nbytes;
|
||||
GdkPixbufLoaderPrivate *priv = loader->private;
|
||||
@ -303,7 +303,7 @@ gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, guchar *buf, size_t
|
||||
* cannot parse the buf.
|
||||
**/
|
||||
gboolean
|
||||
gdk_pixbuf_loader_write (GdkPixbufLoader *loader, guchar *buf, size_t count)
|
||||
gdk_pixbuf_loader_write (GdkPixbufLoader *loader, const gchar *buf, size_t count)
|
||||
{
|
||||
GdkPixbufLoaderPrivate *priv;
|
||||
|
||||
|
@ -68,7 +68,7 @@ struct _GdkPixbufLoaderClass {
|
||||
|
||||
GtkType gdk_pixbuf_loader_get_type (void);
|
||||
GdkPixbufLoader *gdk_pixbuf_loader_new (void);
|
||||
gboolean gdk_pixbuf_loader_write (GdkPixbufLoader *loader, guchar *buf, size_t count);
|
||||
gboolean gdk_pixbuf_loader_write (GdkPixbufLoader *loader, const gchar *buf, size_t count);
|
||||
GdkPixbuf *gdk_pixbuf_loader_get_pixbuf (GdkPixbufLoader *loader);
|
||||
void gdk_pixbuf_loader_close (GdkPixbufLoader *loader);
|
||||
|
||||
|
@ -273,7 +273,7 @@ gdk_pixbuf_loader_load_module(GdkPixbufLoader *loader)
|
||||
}
|
||||
|
||||
static int
|
||||
gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, guchar *buf, size_t count)
|
||||
gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, const gchar *buf, size_t count)
|
||||
{
|
||||
int nbytes;
|
||||
GdkPixbufLoaderPrivate *priv = loader->private;
|
||||
@ -303,7 +303,7 @@ gdk_pixbuf_loader_eat_header_write (GdkPixbufLoader *loader, guchar *buf, size_t
|
||||
* cannot parse the buf.
|
||||
**/
|
||||
gboolean
|
||||
gdk_pixbuf_loader_write (GdkPixbufLoader *loader, guchar *buf, size_t count)
|
||||
gdk_pixbuf_loader_write (GdkPixbufLoader *loader, const gchar *buf, size_t count)
|
||||
{
|
||||
GdkPixbufLoaderPrivate *priv;
|
||||
|
||||
|
@ -68,7 +68,7 @@ struct _GdkPixbufLoaderClass {
|
||||
|
||||
GtkType gdk_pixbuf_loader_get_type (void);
|
||||
GdkPixbufLoader *gdk_pixbuf_loader_new (void);
|
||||
gboolean gdk_pixbuf_loader_write (GdkPixbufLoader *loader, guchar *buf, size_t count);
|
||||
gboolean gdk_pixbuf_loader_write (GdkPixbufLoader *loader, const gchar *buf, size_t count);
|
||||
GdkPixbuf *gdk_pixbuf_loader_get_pixbuf (GdkPixbufLoader *loader);
|
||||
void gdk_pixbuf_loader_close (GdkPixbufLoader *loader);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user