comparison libpurple/eventloop.h @ 32226:02a2e8183b1d

Clean the API documentation in preparation for 3.0.0 by removing all the old @since tags.
author andrew.victor@mxit.com
date Sun, 25 Sep 2011 18:56:58 +0000
parents 584063555949
children 98520ee78f12
comparison
equal deleted inserted replaced
32224:9d5b87e1a4d0 32226:02a2e8183b1d
143 * Implementation of this UI op is optional. If it's not implemented, 143 * Implementation of this UI op is optional. If it's not implemented,
144 * calls to purple_timeout_add_seconds() will be serviced by 144 * calls to purple_timeout_add_seconds() will be serviced by
145 * #timeout_add. 145 * #timeout_add.
146 * 146 *
147 * @see purple_timeout_add_seconds() 147 * @see purple_timeout_add_seconds()
148 * @since 2.1.0
149 **/ 148 **/
150 guint (*timeout_add_seconds)(guint interval, GSourceFunc function, 149 guint (*timeout_add_seconds)(guint interval, GSourceFunc function,
151 gpointer data); 150 gpointer data);
152 151
153 void (*_purple_reserved2)(void); 152 void (*_purple_reserved2)(void);
190 * seconds. 189 * seconds.
191 * @param function The function to call. 190 * @param function The function to call.
192 * @param data data to pass to @a function. 191 * @param data data to pass to @a function.
193 * @return A handle to the timer which can be passed to 192 * @return A handle to the timer which can be passed to
194 * purple_timeout_remove() to remove the timer. 193 * purple_timeout_remove() to remove the timer.
195 *
196 * @since 2.1.0
197 */ 194 */
198 guint purple_timeout_add_seconds(guint interval, GSourceFunc function, gpointer data); 195 guint purple_timeout_add_seconds(guint interval, GSourceFunc function, gpointer data);
199 196
200 /** 197 /**
201 * Removes a timeout handler. 198 * Removes a timeout handler.