Ejemplo n.º 1
0
JNIEXPORT jboolean JNICALL
Java_org_gnome_gtk_GtkTextChildAnchor_gtk_1text_1child_1anchor_1get_1deleted
(
	JNIEnv* env,
	jclass cls,
	jlong _self
)
{
	gboolean result;
	jboolean _result;
	GtkTextChildAnchor* self;

	// convert parameter self
	self = (GtkTextChildAnchor*) _self;

	// call function
	result = gtk_text_child_anchor_get_deleted(self);

	// cleanup parameter self

	// translate return value to JNI type
	_result = (jboolean) result;

	// and finally
	return _result;
}
Ejemplo n.º 2
0
static VALUE
textchild_get_deleted(VALUE self)
{
    return CBOOL2RVAL(gtk_text_child_anchor_get_deleted(_SELF(self)));
}