File: gi-cairo-render.h

package info (click to toggle)
haskell-gi-cairo-render 0.1.2-3
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 228 kB
  • sloc: haskell: 1,176; ansic: 12; makefile: 5
file content (13 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include<cairo.h>
#define CAIRO_CHECK_VERSION(major,minor,micro)    \
        (CAIRO_VERSION >= CAIRO_VERSION_ENCODE(major,minor,micro))
#ifdef CAIRO_HAS_PDF_SURFACE
#include<cairo-pdf.h>
#endif
#ifdef CAIRO_HAS_PS_SURFACE
#include<cairo-ps.h>
#endif
#ifdef CAIRO_HAS_SVG_SURFACE
#include<cairo-svg.h>
#endif