diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2009-06-08 08:06:25 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2009-06-08 08:06:25 +0200 |
commit | 4d4b3b1c04d41868ebb58bd9ccba7b303007e900 (patch) | |
tree | 909ed0aad0b145733521f4ac2bfb938dd4b43785 /lib/base/cairo/cairoxlib.nim | |
parent | ce88dc3e67436939b03f97e624c11ca6058fedce (diff) | |
download | Nim-4d4b3b1c04d41868ebb58bd9ccba7b303007e900.tar.gz |
version0.7.10
Diffstat (limited to 'lib/base/cairo/cairoxlib.nim')
-rw-r--r-- | lib/base/cairo/cairoxlib.nim | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/lib/base/cairo/cairoxlib.nim b/lib/base/cairo/cairoxlib.nim deleted file mode 100644 index dfe44eb87..000000000 --- a/lib/base/cairo/cairoxlib.nim +++ /dev/null @@ -1,40 +0,0 @@ - -# -# Translation of cairo-xlib.h version 1.4 -# by Jeffrey Pohlmeyer -# updated to version 1.4 by Luiz Américo Pereira Câmara 2007 -# - -import - Cairo, x, xlib, xrender - -proc cairo_xlib_surface_create*(dpy: PDisplay, drawable: TDrawable, - visual: PVisual, width, height: int32): PCairoSurface{. - cdecl, importc, dynlib: LIB_CAIRO.} -proc cairo_xlib_surface_create_for_bitmap*(dpy: PDisplay, bitmap: TPixmap, - screen: PScreen, width, height: int32): PCairoSurface{.cdecl, importc, - dynlib: LIB_CAIRO.} -proc cairo_xlib_surface_create_with_xrender_format*(dpy: PDisplay, - drawable: TDrawable, screen: PScreen, format: PXRenderPictFormat, - width, height: int32): PCairoSurface{.cdecl, importc, dynlib: LIB_CAIRO.} -proc cairo_xlib_surface_get_depth*(surface: PCairoSurface): int32{.cdecl, importc, - dynlib: LIB_CAIRO.} -proc cairo_xlib_surface_get_display*(surface: PCairoSurface): PDisplay{. - cdecl, importc, dynlib: LIB_CAIRO.} -proc cairo_xlib_surface_get_drawable*(surface: PCairoSurface): TDrawable{. - cdecl, importc, dynlib: LIB_CAIRO.} -proc cairo_xlib_surface_get_height*(surface: PCairoSurface): int32{.cdecl, importc, - dynlib: LIB_CAIRO.} -proc cairo_xlib_surface_get_screen*(surface: PCairoSurface): PScreen{.cdecl, importc, - dynlib: LIB_CAIRO.} -proc cairo_xlib_surface_get_visual*(surface: PCairoSurface): PVisual{.cdecl, importc, - dynlib: LIB_CAIRO.} -proc cairo_xlib_surface_get_width*(surface: PCairoSurface): int32{.cdecl, importc, - dynlib: LIB_CAIRO.} -proc cairo_xlib_surface_set_size*(surface: PCairoSurface, - width, height: int32){.cdecl, importc, - dynlib: LIB_CAIRO.} -proc cairo_xlib_surface_set_drawable*(surface: PCairoSurface, - drawable: TDrawable, width, height: int32){. - cdecl, importc, dynlib: LIB_CAIRO.} -# implementation |