projects
/
cl-gtk2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
clipboard functions
[cl-gtk2.git]
/
gtk
/
gtk.clipboard.lisp
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