efl/src/lib/ecore/ecore_mainloop.eo

35 lines
554 B
Plaintext
Raw Normal View History

class Ecore_Mainloop (Eo.Base)
{
legacy_prefix: null;
data: null;
properties {
select_func {
set {
}
get {
}
values {
Ecore_Select_Function select_func;
}
}
}
methods {
iterate {
}
iterate_may_block {
return int;
params {
int may_block;
}
}
begin {
}
quit {
}
animator_ticked {
/* FIXME: Should it be a prooperty? */
return Eina_Bool;
}
}
}