repo.or.cz
/
cl-gtk2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hide new functions in Gdk-2.18 behind conditional read
[cl-gtk2.git]
/
gtk
/
gtk.clipboard.lisp
blob
846e1074bb0cea9c6287647e52f5dcaf1f5156f3
1
(
in-package
:
gtk
)
2
3
(
defcfun
gtk-clipboard-set-text
:
void
4
(
clipboard
g-object
)
5
(
text
:
string
)
6
(
len
:
int
))
7
8
(
defun
clipboard-set-text
(
clipboard
text
)
9
(
gtk-clipboard-set-text
clipboard text -
1
))
10
11
(
export
'
clipboard-set-text
)
12