Example #1
0
File: gdk.go Project: gotk3/gotk3
func UnicodeToKeyval(v rune) uint {
	return uint(C.gdk_unicode_to_keyval(C.guint32(v)))
}
Example #2
0
/*
Convert from a ISO10646 character to a key symbol.
*/
func UnicodeToKeyval(wc uint32) (return__ uint) {
	var __cgo__return__ C.guint
	__cgo__return__ = C.gdk_unicode_to_keyval(C.guint32(wc))
	return__ = uint(__cgo__return__)
	return
}