Artifact 0f7fe3de34d385ada742a1b06aa42e522cda7951:
- File canvas-draw/racket/dgn.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: 311) [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:dgn ((get-ffi-obj "cdContextDGN" libcd (_fun -> [context : _context])))) (provide context:dgn) ;; }}}