ecore: ecore_main_loop_select_func_set is definitively an internal function.

This commit is contained in:
Cedric BAIL 2016-04-21 14:50:19 -07:00
parent 3108f023ba
commit 869a2243e7
2 changed files with 0 additions and 25 deletions

View File

@ -2725,18 +2725,6 @@ EAPI Eo *ecore_main_loop_get(void)
return _mainloop_singleton;
}
EOLIAN static void
_ecore_mainloop_select_func_set(Eo *obj EINA_UNUSED, Ecore_Mainloop_Data *pd EINA_UNUSED, Ecore_Select_Function select_func)
{
ecore_main_loop_select_func_set(select_func);
}
EOLIAN static Ecore_Select_Function
_ecore_mainloop_select_func_get(Eo *obj EINA_UNUSED, Ecore_Mainloop_Data *pd EINA_UNUSED)
{
return ecore_main_loop_select_func_get();
}
EOLIAN static void
_ecore_mainloop_iterate(Eo *obj EINA_UNUSED, Ecore_Mainloop_Data *pd EINA_UNUSED)
{

View File

@ -1,5 +1,3 @@
type @extern Ecore_Select_Function: __undefined_type;
class Ecore_Mainloop (Eo.Base)
{
[[The Ecore Main Loop
@ -13,17 +11,6 @@ class Ecore_Mainloop (Eo.Base)
]]
legacy_prefix: null;
methods {
@property select_func {
[[Function to use when monitoring multiple file descriptors.]]
set {
}
get {
}
values {
select_func: Ecore_Select_Function;
[[This function will be used instead of the system call select.]]
}
}
iterate {
[[Runs a single iteration of the main loop to process everything on the
queue.]]