| 1 #include "module.h" |
|
| 2 |
|
| 3 MODULE = Gaim::Notify PACKAGE = Gaim::Notify PREFIX = gaim_notify_ |
|
| 4 PROTOTYPES: ENABLE |
|
| 5 |
|
| 6 void |
|
| 7 gaim_notify_close(type, ui_handle) |
|
| 8 Gaim::NotifyType type |
|
| 9 void * ui_handle |
|
| 10 |
|
| 11 void |
|
| 12 gaim_notify_close_with_handle(handle) |
|
| 13 void * handle |
|
| 14 |
|
| 15 void * |
|
| 16 gaim_notify_email(handle, subject, from, to, url, cb, user_data) |
|
| 17 void * handle |
|
| 18 const char *subject |
|
| 19 const char *from |
|
| 20 const char *to |
|
| 21 const char *url |
|
| 22 Gaim::NotifyCloseCallback cb |
|
| 23 gpointer user_data |
|
| 24 |
|
| 25 void * |
|
| 26 gaim_notify_emails(handle, count, detailed, subjects, froms, tos, urls, cb, user_data) |
|
| 27 void * handle |
|
| 28 size_t count |
|
| 29 gboolean detailed |
|
| 30 const char **subjects |
|
| 31 const char **froms |
|
| 32 const char **tos |
|
| 33 const char **urls |
|
| 34 Gaim::NotifyCloseCallback cb |
|
| 35 gpointer user_data |
|
| 36 |
|
| 37 void * |
|
| 38 gaim_notify_formatted(handle, title, primary, secondary, text, cb, user_data) |
|
| 39 void * handle |
|
| 40 const char *title |
|
| 41 const char *primary |
|
| 42 const char *secondary |
|
| 43 const char *text |
|
| 44 Gaim::NotifyCloseCallback cb |
|
| 45 gpointer user_data |
|
| 46 |
|
| 47 Gaim::NotifyUiOps |
|
| 48 gaim_notify_get_ui_ops() |
|
| 49 |
|
| 50 |
|
| 51 void * |
|
| 52 gaim_notify_message(handle, type, title, primary, secondary, cb, user_data) |
|
| 53 void * handle |
|
| 54 Gaim::NotifyMsgType type |
|
| 55 const char *title |
|
| 56 const char *primary |
|
| 57 const char *secondary |
|
| 58 Gaim::NotifyCloseCallback cb |
|
| 59 gpointer user_data |
|
| 60 |
|
| 61 void * |
|
| 62 gaim_notify_searchresults(gc, title, primary, secondary, results, cb, user_data) |
|
| 63 Gaim::Connection gc |
|
| 64 const char *title |
|
| 65 const char *primary |
|
| 66 const char *secondary |
|
| 67 Gaim::NotifySearchResults results |
|
| 68 Gaim::NotifyCloseCallback cb |
|
| 69 gpointer user_data |
|
| 70 |
|
| 71 void |
|
| 72 gaim_notify_set_ui_ops(ops) |
|
| 73 Gaim::NotifyUiOps ops |
|
| 74 |
|
| 75 void * |
|
| 76 gaim_notify_uri(handle, uri) |
|
| 77 void * handle |
|
| 78 const char *uri |
|
| 79 |
|
| 80 void * |
|
| 81 gaim_notify_userinfo(gc, who, text, cb, user_data) |
|
| 82 Gaim::Connection gc |
|
| 83 const char *who |
|
| 84 const char *text |
|
| 85 Gaim::NotifyCloseCallback cb |
|
| 86 gpointer user_data |
|