Mercurial > dillo_port1.3
view src/imgbuf.hh @ 1958:7860a3051241
Fix for endless loop with META refresh and same URL or no URL at all
author | Jorge Arellano Cid <jcid@dillo.org> |
---|---|
date | Fri, 15 Apr 2011 14:08:53 -0300 |
parents | 6fcb2fa90e23 |
children |
line wrap: on
line source
#ifndef __IMGBUF_HH__ #define __IMGBUF_HH__ // Imgbuf wrappers #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #include "image.hh" /* * Function prototypes */ void a_Imgbuf_ref(void *v_imgbuf); void a_Imgbuf_unref(void *v_imgbuf); void *a_Imgbuf_new(void *v_dw, int img_type, uint_t width, uint_t height); int a_Imgbuf_last_reference(void *v_imgbuf); void a_Imgbuf_update(void *v_imgbuf, const uchar_t *buf, DilloImgType type, uchar_t *cmap, uint_t width, uint_t height, uint_t y); void a_Imgbuf_new_scan(void *v_imgbuf); #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* __IMGBUF_HH__ */