- Timestamp:
- 2006-05-15T09:57:04Z (19 years ago)
- Branches:
- master
- Children:
- ac83732, c2ee85c
- Parents:
- c98be00
- Location:
- protocols
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/events.h
rc98be00 raf9980f 59 59 G_MODULE_EXPORT gint b_timeout_add(gint timeout, b_event_handler func, gpointer data); 60 60 G_MODULE_EXPORT void b_event_remove(gint id); 61 G_MODULE_EXPORT gboolean b_event_remove_by_data(gpointer data);62 61 63 62 #ifdef EVENTS_LIBEVENT -
protocols/events_glib.c
rc98be00 raf9980f 136 136 g_source_remove(tag); 137 137 } 138 139 gboolean b_event_remove_by_data(gpointer data)140 {141 return g_source_remove_by_user_data(data);142 } -
protocols/events_libevent.c
rc98be00 raf9980f 212 212 } 213 213 214 gboolean b_event_remove_by_data( gpointer data )215 {216 /* FIXME! */217 event_debug( "FALSE!\n" );218 return FALSE;219 }220 221 214 void closesocket( int fd ) 222 215 {
Note: See TracChangeset
for help on using the changeset viewer.