forked from Shinmera/file-select
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.lisp
More file actions
44 lines (38 loc) · 1.08 KB
/
package.lisp
File metadata and controls
44 lines (38 loc) · 1.08 KB
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
(defpackage #:org.shirakumo.file-select
(:use #:cl)
;; protocol.lisp
(:export
#:*default-backend*
#:file-select-error
#:new
#:existing
#:backend
#:finalize
#:new-with
#:existing-with
#:native-namestring
#:parse-native-namestring)
;; defaults.lisp
(:export
#:no-backend-found
#:determine-default-backend))
(defpackage #:org.shirakumo.file-select.gtk
(:use #:cl #:org.shirakumo.file-select)
(:export #:gtk))
(defpackage #:org.shirakumo.file-select.win32
(:use #:cl #:org.shirakumo.file-select)
#+windows (:local-nicknames (#:com #:org.shirakumo.com-on))
(:export #:win32))
(defpackage #:org.shirakumo.file-select.zenity
(:use #:cl #:org.shirakumo.file-select)
(:export #:zenity))
(defpackage #:org.shirakumo.file-select.macos
(:use #:cl #:org.shirakumo.file-select)
(:export #:macos)
(:shadow #:allocate-instance))
(defpackage #:org.shirakumo.file-select.kdialog
(:use #:cl #:org.shirakumo.file-select)
(:export #:kdialog))
(defpackage #:org.shirakumo.file-select.yad
(:use #:cl #:org.shirakumo.file-select)
(:export #:yad))