comparison src/eventloop.c @ 8387:98c9a35541ed

[gaim-migrate @ 9115] This should be less wrong. Or more wrong. Either one. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 02 Mar 2004 08:12:24 +0000
parents ef881489396e
children 0f2af117d5d3
comparison
equal deleted inserted replaced
8386:143d0b29ba82 8387:98c9a35541ed
32 GaimEventLoopUiOps *ops = gaim_eventloop_get_ui_ops(); 32 GaimEventLoopUiOps *ops = gaim_eventloop_get_ui_ops();
33 33
34 return ops->timeout_add(interval, function, data); 34 return ops->timeout_add(interval, function, data);
35 } 35 }
36 36
37 void 37 guint
38 gaim_timeout_remove(guint tag) 38 gaim_timeout_remove(guint tag)
39 { 39 {
40 GaimEventLoopUiOps *ops = gaim_eventloop_get_ui_ops(); 40 GaimEventLoopUiOps *ops = gaim_eventloop_get_ui_ops();
41 41
42 return ops->timeout_remove(tag); 42 return ops->timeout_remove(tag);