diff 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
line wrap: on
line diff
--- a/src/eventloop.h	Sat Apr 24 12:19:43 2004 +0000
+++ b/src/eventloop.h	Sat Apr 24 14:14:05 2004 +0000
@@ -70,7 +70,7 @@
 	 * Removes an input handler.
 	 * @see gaim_input_remove, g_source_remove
 	 */
-	void (*input_remove)(guint handle);
+	guint (*input_remove)(guint handle);
 };
 
 /**************************************************************************/
@@ -117,7 +117,7 @@
  * @param handle The handle of the input handler. Note that this is the return
  * value from gaim_input_add, <i>not</i> the file descriptor.
  */
-void gaim_input_remove(guint handle);
+guint gaim_input_remove(guint handle);
 
 /*@}*/