File: cairo-gtk2hs.h

package info (click to toggle)
haskell-cairo 0.13.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 364 kB
  • sloc: haskell: 2,876; makefile: 47; ansic: 12
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