summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
6d51db7)
Signed-off-by: Leandro Lucarella <llucax@gmail.com>
bool ev_is_pending(TYPE)(TYPE* w)
{
bool ev_is_pending(TYPE)(TYPE* w)
{
+ return cast (bool) w.pending;
}
bool ev_is_active(TYPE)(TYPE* w)
{
}
bool ev_is_active(TYPE)(TYPE* w)
{
+ return cast (bool) w.active;
}
int ev_priority(TYPE)(TYPE* w)
{
}
int ev_priority(TYPE)(TYPE* w)
{
+ return cast (bool) w.priority;
}
void function(ev_loop_t*, TYPE*, int) ev_cb(TYPE)(TYPE* w)
}
void function(ev_loop_t*, TYPE*, int) ev_cb(TYPE)(TYPE* w)