3 (defctype quark-value-type
:uint32
)
5 (defcfun g-quark-from-string quark-value-type
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
))