efl/src/lib/ecore/ecore_idler.eo

21 lines
349 B
Plaintext
Raw Normal View History

class Ecore.Idler (Eo.Base)
2014-03-23 07:20:37 -07:00
{
eo_prefix: ecore_idler;
methods {
constructor {
/*@ Constructor. */
legacy: null;
2014-03-23 07:20:37 -07:00
params {
@in func: Ecore_Task_Cb;
@in data: const(void)*;
2014-03-23 07:20:37 -07:00
}
}
}
implements {
Eo.Base.destructor;
2014-03-23 07:20:37 -07:00
}
constructors {
.constructor;
}
}