X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Fgfxtools.h;h=5c27e2ba75ec40be29e1d37342e224e0d20f6163;hp=d038e06d577ddce6175f1838147ae3ab2c3badeb;hb=6487933fe6b496bb04cd287b51b96af6b7d97058;hpb=0b38eabf882d8bdcd0e92995e8a2478db9cb5ed8 diff --git a/lib/gfxtools.h b/lib/gfxtools.h index d038e06..5c27e2b 100644 --- a/lib/gfxtools.h +++ b/lib/gfxtools.h @@ -93,14 +93,25 @@ char gfxfontlist_hasfont(gfxfontlist_t*list, gfxfont_t*font); void* gfxfontlist_getuserdata(gfxfontlist_t*list, const char*id); void gfxfontlist_free(gfxfontlist_t*list, char deletefonts); -void gfximage_save_jpeg(gfximage_t*img, char*filename, int quality); - gfxbbox_t* gfxline_isrectangle(gfxline_t*_l); gfxline_t*gfxline_makerectangle(double x1, double y1, double x2, double y2); gfxline_t*gfxline_makecircle(double x,double y,double rx, double ry); void gfxline_show(gfxline_t*line, FILE*fi); +typedef struct _gfxparam { + const char*key; + const char*value; + struct _gfxparam* next; +} gfxparam_t; +typedef struct _gfxparams { + gfxparam_t*params; + gfxparam_t*last; +} gfxparams_t; +gfxparams_t* gfxparams_new(); +void gfxparams_store(gfxparams_t*params, const char*name, const char*value); +void gfxparams_free(gfxparams_t*params); + #ifdef __cplusplus } #endif