Artifact e12561359f155699f1f97a887609e534e2ee786a:


#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:debug
  ((get-ffi-obj "cdContextDebug" libcd (_fun -> [context : _context]))))

(provide
 context:debug)

;; }}}