comparison src/eventloop.h @ 8797:0f2af117d5d3

[gaim-migrate @ 9559] Making gaim_input_remove return a guint for no reason other than consistency. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 24 Apr 2004 14:14:05 +0000
parents 98c9a35541ed
children 50c1724d5e59
comparison
equal deleted inserted replaced
8796:7c7c7f5ce09d 8797:0f2af117d5d3
68 68
69 /** 69 /**
70 * Removes an input handler. 70 * Removes an input handler.
71 * @see gaim_input_remove, g_source_remove 71 * @see gaim_input_remove, g_source_remove
72 */ 72 */
73 void (*input_remove)(guint handle); 73 guint (*input_remove)(guint handle);
74 }; 74 };
75 75
76 /**************************************************************************/ 76 /**************************************************************************/
77 /** @name Event Loop API */ 77 /** @name Event Loop API */
78 /**************************************************************************/ 78 /**************************************************************************/
115 * Removes an input handler. 115 * Removes an input handler.
116 * 116 *
117 * @param handle The handle of the input handler. Note that this is the return 117 * @param handle The handle of the input handler. Note that this is the return
118 * value from gaim_input_add, <i>not</i> the file descriptor. 118 * value from gaim_input_add, <i>not</i> the file descriptor.
119 */ 119 */
120 void gaim_input_remove(guint handle); 120 guint gaim_input_remove(guint handle);
121 121
122 /*@}*/ 122 /*@}*/
123 123
124 124
125 /**************************************************************************/ 125 /**************************************************************************/