Artifact 7c81a9e55c72ad608411ed1af54d42a9955761dc:
- File canvas-draw/racket/metafile.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: 326) [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:metafile ((get-ffi-obj "cdContextMetafile" libcd (_fun -> [context : _context])))) (provide context:metafile) ;; }}}