Esempio n. 1
0
func (v *Format) GetDescription() string {
	return gostring(C.gdk_pixbuf_format_get_description(v.GPixbufFormat))
}
Esempio n. 2
0
func (f *PixbufFormat) GetDescription() (string, error) {
	c := C.gdk_pixbuf_format_get_description(f.native())
	return C.GoString((*C.char)(c)), nil
}
Esempio n. 3
0
func (_self_ *PixbufFormat) GetDescription() (_go__return__ string) {
	var _return_ *C.gchar
	_return_ = C.gdk_pixbuf_format_get_description((*C.GdkPixbufFormat)(_self_))
	_go__return__ = C.GoString((*C.char)(unsafe.Pointer(_return_)))
	return
}