Download this file
15 lines (10 with data), 384 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14 | ;;(require 'cffi)
(defpackage :lispbuilder-sdl-cocoahelper
(:use :common-lisp :cffi))
(in-package :lispbuilder-sdl-cocoahelper)
(push (asdf:component-pathname (asdf:find-system :cocoahelper)) *foreign-library-directories*)
(define-foreign-library cocoahelper
(t (:default "cocoahelper")))
(use-foreign-library cocoahelper)
(defcfun "cocoahelper_init" :void)
(cocoahelper-init)
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.