comparison src/notify.h @ 5476:9bcd8cd625ae

[gaim-migrate @ 5872] Some little tidy-ups. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 22 May 2003 05:23:14 +0000
parents 0031a613a87d
children 3c7748b24410
comparison
equal deleted inserted replaced
5475:ad9887c91a59 5476:9bcd8cd625ae
63 void *(*notify_emails)(size_t count, const char **subjects, 63 void *(*notify_emails)(size_t count, const char **subjects,
64 const char **froms, const char **tos, 64 const char **froms, const char **tos,
65 const char **urls, GCallback cb, 65 const char **urls, GCallback cb,
66 void *user_data); 66 void *user_data);
67 67
68 void (*close_notify)(GaimNotifyType type, void *uihandle); 68 void (*close_notify)(GaimNotifyType type, void *ui_handle);
69 69
70 } GaimNotifyUiOps; 70 } GaimNotifyUiOps;
71 71
72 /**************************************************************************/ 72 /**************************************************************************/
73 /** @name Notification API */ 73 /** @name Notification API */
136 * Closes a notification. 136 * Closes a notification.
137 * 137 *
138 * This should be used only by the UI operation functions and part of the 138 * This should be used only by the UI operation functions and part of the
139 * core. 139 * core.
140 * 140 *
141 * @param type The notification type. 141 * @param type The notification type.
142 * @param uihandle The notification UI handle. 142 * @param ui_handle The notification UI handle.
143 */ 143 */
144 void gaim_notify_close(GaimNotifyType type, void *uihandle); 144 void gaim_notify_close(GaimNotifyType type, void *ui_handle);
145 145
146 /** 146 /**
147 * Closes all notifications registered with the specified handle. 147 * Closes all notifications registered with the specified handle.
148 * 148 *
149 * @param handle The handle. 149 * @param handle The handle.