mirror of /home/gitosis/repositories/libev.git
Mirror of :pserver:anonymous@cvs.schmorp.de/schmorpforge libev
http://software.schmorp.de/pkg/libev.html
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
872 B
15 lines
872 B
#include "ev++.h" |
|
|
|
namespace ev { |
|
extern "C" { |
|
void cb_io (struct ev_io *w, int revents) { (*static_cast<io *>(w))(revents); } |
|
void cb_timer (struct ev_timer *w, int revents) { (*static_cast<timer *>(w))(revents); } |
|
void cb_periodic (struct ev_periodic *w, int revents) { (*static_cast<periodic *>(w))(revents); } |
|
void cb_idle (struct ev_idle *w, int revents) { (*static_cast<idle *>(w))(revents); } |
|
void cb_prepare (struct ev_prepare *w, int revents) { (*static_cast<prepare *>(w))(revents); } |
|
void cb_check (struct ev_check *w, int revents) { (*static_cast<check *>(w))(revents); } |
|
void cb_sig (struct ev_signal *w, int revents) { (*static_cast<sig *>(w))(revents); } |
|
void cb_child (struct ev_child *w, int revents) { (*static_cast<child *>(w))(revents); } |
|
} |
|
} |
|
|
|
|