blob: 3c2444b61f1ff0c6a5ecb1cf3683b78f1651380c (
plain)
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
|
;;;; Objective-CL, an Objective-C bridge for Common Lisp.
;;;; Copyright (C) 2007 Matthias Andreas Benkard.
;;;;
;;;; This program is free software: you can redistribute it and/or
;;;; modify it under the terms of the GNU Lesser General Public License
;;;; as published by the Free Software Foundation, either version 3 of
;;;; the License, or (at your option) any later version.
;;;;
;;;; This program is distributed in the hope that it will be useful, but
;;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;;;; Lesser General Public License for more details.
;;;;
;;;; You should have received a copy of the GNU Lesser General Public
;;;; License along with this program. If not, see
;;;; <http://www.gnu.org/licenses/>.
(defpackage #:mulk.objective-cl
(:nicknames #:objcl #:objective-cl #:mulk.objcl)
(:use #:closer-common-lisp #:cffi #:split-sequence)
(:shadow #:foreign-pointer)
;; Functions
(:export #:initialise-runtime
#:shutdown-runtime
#:install-reader-syntax
#:invoke-by-name
#:invoke
#:find-objc-class
#:find-selector
#:objc-class-name
#:selector-name
#:selector
#:define-returns-boolean-exception
#:undefine-returns-boolean-exception
;; Generic functions
#:objc-eql
#:objc-equal
;; Macros
#+(or) #:define-objc-struct
#+(or) #:define-objc-union
;; Special variables
#:*trace-method-calls*
;; Constants
#:+nil+
#:+yes+
#:+no+
;; Classes
#:id
#:selector
#:exception
#:foreign-value
#:foreign-struct
#:foreign-union
;; Conditions
#:message-not-understood
#:no-such-selector
;; Metaclasses
#:objective-c-class
#:objective-c-metaclass))
(defpackage #:mulk.objective-cl-features
(:nicknames #:objcl-features #:objective-cl-features #:mulk.objcl-features)
(:use)
(:export #:gnu-runtime
#:next-runtime))
(defpackage #:ns
(:nicknames #:objcl-ns #:objective-c-classes #:objc-classes)
(:use))
#-(or cmu sbcl) (declaim (declaration values))
|