-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.lisp
96 lines (95 loc) · 1.67 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
(defpackage #:org.shirakumo.cocoas.cffi
(:use #:cl)
(:export
#:cocoa
#:appkit
#:foundation
#:id
#:oclass
#:sel
#:cgfloat
#:cfindex
#:nsinteger
#:string-encoding
#:number-type
#:release
#:create-number
#:number-get-value
#:create-dictionary
#:dictionary-contains-key
#:dictionary-get-value
#:dictionary-get-count
#:dictionary-get-keys-and-values
#:create-set
#:set-get-count
#:set-get-values
#:create-array
#:array-get-count
#:array-get-value-at-index
#:create-string-with-cstring
#:string-get-length
#:string-get-cstring
#:string-get-cstring-ptr
#:get-class
#:class-allocate-class
#:class-register-class
#:class-get-name
#:class-get-superclass
#:class-add-method
#:class-get-method-implementation
#:class-replace-method
#:object-get-class
#:object-set-class
#:register-name
#:set-uncaught-exception-handler
#:app
#:event-mask
#:default-run-loop-mode
#:call
#:free))
(defpackage #:org.shirakumo.cocoas
(:use #:cl)
(:local-nicknames
(#:objc #:org.shirakumo.cocoas.cffi))
(:import-from
#:org.shirakumo.cocoas.cffi
#:id
#:oclass
#:sel
#:cgfloat
#:cfindex
#:nsinteger
#:release
#:free
#:app
#:call)
(:export
#:id
#:oclass
#:sel
#:cgfloat
#:cfindex
#:nsinteger
#:release
#:free
#:app
#:call)
(:export
#:foundation-error
#:name
#:reason
#:init
#:shutdown
#:define-objcfun
#:define-objcmethod
#:with-objects
#:with-foundation-objects
#:process-event
#:with-main-loop)
(:export
#:nsstring
#:cfstring
#:cfnumber
#:cfset
#:cfarray
#:cfdictionary))