Artifact 401583817f5579edc979ba5a27baccab5fec87b4:
- File canvas-draw/chicken/canvas-draw-picture.scm — part of check-in [ed10f826ff] at 2011-01-30 17:39:09 on branch trunk — Re-ran configure in ffcall and imported canvas-draw source (user: matt, size: 368) [annotate] [blame] [check-ins using]
(require-library canvas-draw-base) (module canvas-draw-picture (context:picture) (import scheme chicken foreign canvas-draw-base) ;; {{{ Data types (foreign-declare "#include <cd.h>\n" "#include <cdpicture.h>\n") (include "canvas-draw-types.scm") ;; }}} ;; {{{ Context types (define context:picture (foreign-value "CD_PICTURE" nonnull-context)) ;; }}} )