Add PangoUnderline
[cl-gtk2.git] / glib / glib.quark.lisp
blobba1488b69bedc90aab90817b6efe6a6f061ad224
1 (in-package :glib)
3 (defctype quark-value-type :uint32)
5 (defcfun g-quark-from-string quark-value-type
6 (string :string))
8 (defcfun g-quark-to-string :string
9 (quark quark-value-type))
11 (define-foreign-type quark-type ()
13 (:actual-type quark-value-type)
14 (:simple-parser g-quark))
16 (defmethod translate-to-foreign (value (type quark-type))
17 (g-quark-from-string value))
19 (defmethod translate-from-foreign (value (type quark-type))
20 (g-quark-to-string value))