-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.lisp
36 lines (35 loc) · 959 Bytes
/
package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
(defpackage cffi-object
(:use #:cl #:alexandria)
(:nicknames #:cobj)
(:export #:cobject
#:cobject-eq
#:cobject-pointer
#:cpointer
#:pointer-cpointer
#:cref
#:cpointer-equal
#:cpointer-eq
#:carray
#:make-carray
#:pointer-carray
#:cpointer-carray
#:carray-dimensions
#:carray-displacement
#:carray-element-type
#:ccoerce
#:caref
#:clength
#:creplace
#:cfill
#:carray-equal
#:define-cobject-class
#:define-global-cobject
#:*define-global-cobject*
#:pointer-cobject
#:manage-cobject
#:unmanage-cobject
#:with-monotonic-buffer-allocator
#:with-default-allocator
#:with-leaky-allocator
#:defcobjfun))
(in-package #:cffi-object)