Artifact 1d85f63ef04a9550045ece803c5ddc16887474c9:
- File canvas-draw/racket/picture.rkt — 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: 323) [annotate] [blame] [check-ins using]
#lang racket/base (require ffi/unsafe "base.rkt") (define libcd (case (system-type 'os) [(windows) (ffi-lib "cd")] [else (ffi-lib "libcd")])) ;; {{{ Context types (define context:picture ((get-ffi-obj "cdContextPicture" libcd (_fun -> [context : _context])))) (provide context:picture) ;; }}}