comparison src/gtknotify.c @ 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 42a20beb80a7
comparison
equal deleted inserted replaced
5475:ad9887c91a59 5476:9bcd8cd625ae
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */ 22 */
23 #include "gtknotify.h" 23 #include "gtknotify.h"
24 #include "stock.h" 24 #include "stock.h"
25 #include <gtk/gtk.h> 25 #include <gtk/gtk.h>
26
27 static void *gaim_gtk_notify_emails(size_t count, const char **subjects,
28 const char **froms, const char **tos,
29 const char **urls, GCallback cb,
30 void *user_data);
26 31
27 static void * 32 static void *
28 gaim_gtk_notify_message(GaimNotifyMsgType type, const char *title, 33 gaim_gtk_notify_message(GaimNotifyMsgType type, const char *title,
29 const char *primary, const char *secondary, 34 const char *primary, const char *secondary,
30 GCallback cb, void *user_data) 35 GCallback cb, void *user_data)
96 static void * 101 static void *
97 gaim_gtk_notify_email(const char *subject, const char *from, 102 gaim_gtk_notify_email(const char *subject, const char *from,
98 const char *to, const char *url, 103 const char *to, const char *url,
99 GCallback cb, void *user_data) 104 GCallback cb, void *user_data)
100 { 105 {
101 return NULL; 106 return gaim_gtk_notify_emails(1, &subject, &from, &to, &url, cb, user_data);
102 } 107 }
103 108
104 static void * 109 static void *
105 gaim_gtk_notify_emails(size_t count, const char **subjects, 110 gaim_gtk_notify_emails(size_t count, const char **subjects,
106 const char **froms, const char **tos, 111 const char **froms, const char **tos,