fix for compile-time problems
[swftools.git] / lib / devices / artsutils.h
1 #ifndef __artsutils_h__
2 #define __artsutils_h__
3
4 #include "../../config.h"
5 #include "../art/libart.h"
6
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10
11 ArtVpath* gfxline_to_ArtVpath(gfxline_t*line);
12 ArtSVP* gfxfillToSVP(gfxline_t*line, int perturb);
13 void show_path(ArtSVP*path);
14 ArtSVP* boxToSVP(double x1, double y1,double x2, double y2);
15 ArtSVP* gfxstrokeToSVP(gfxline_t*line, gfxcoord_t width, gfx_capType cap_style, gfx_joinType joint_style, double miterLimit);
16 gfxline_t* SVPtogfxline(ArtSVP*svp);
17
18 #ifdef __cplusplus
19 }
20 #endif
21
22 #endif