Mon, 18 Jul 2005 13:37:38 +0000
[gaim-migrate @ 13174]
Some new xsubs for the perl interpreter and a work around to get it all working again.
| 11118 | 1 | |
| 2 | #include "module.h" | |
| 3 | ||
| 4 | /* TODO | |
| 5 | ||
| 6 | ||
| 7 | */ | |
| 8 | ||
| 9 | MODULE = Gaim::Notify PACKAGE = Gaim::Notify PREFIX = gaim_notify_ | |
| 10 | PROTOTYPES: ENABLE | |
| 11 | ||
| 12 | ||
| 13 | ||
| 14 | void | |
| 15 | gaim_notify_close(type, ui_handle) | |
| 16 | Gaim::NotifyType type | |
| 17 | void * ui_handle | |
| 18 | ||
| 19 | void | |
| 20 | gaim_notify_close_with_handle(handle) | |
| 21 | void * handle | |
| 22 | ||
| 23 | void * | |
| 24 | gaim_notify_email(handle, subject, from, to, url, cb, user_data) | |
| 25 | void * handle | |
| 26 | const char *subject | |
| 27 | const char *from | |
| 28 | const char *to | |
| 29 | const char *url | |
| 30 | GCallback cb | |
| 31 | void * user_data | |
| 32 | ||
| 33 | ||
| 34 | void * | |
| 35 | gaim_notify_emails(handle, count, detailed, subjects, froms, tos, urls, cb, user_data) | |
| 36 | void * handle | |
| 37 | size_t count | |
| 38 | gboolean detailed | |
| 39 | const char **subjects | |
| 40 | const char **froms | |
| 41 | const char **tos | |
| 42 | const char **urls | |
| 43 | GCallback cb | |
| 44 | void * user_data | |
| 45 | ||
| 46 | ||
| 47 | void * | |
| 48 | gaim_notify_formatted(handle, title, primary, secondary, text, cb, user_data) | |
| 49 | void * handle | |
| 50 | const char *title | |
| 51 | const char *primary | |
| 52 | const char *secondary | |
| 53 | const char *text | |
| 54 | GCallback cb | |
| 55 | void * user_data | |
| 56 | ||
| 57 | ||
| 58 | Gaim::NotifyUiOps | |
| 59 | gaim_notify_get_ui_ops() | |
| 60 | ||
| 61 | ||
| 62 | void * | |
| 63 | gaim_notify_message(handle, type, title, primary, secondary, cb, user_data) | |
| 64 | void * handle | |
| 65 | Gaim::NotifyMsgType type | |
| 66 | const char *title | |
| 67 | const char *primary | |
| 68 | const char *secondary | |
| 69 | GCallback cb | |
| 70 | void * user_data | |
| 71 | ||
| 72 | ||
| 73 | void * | |
| 74 | gaim_notify_searchresults(gc, title, primary, secondary, results, cb, user_data) | |
| 75 | Gaim::Connection gc | |
| 76 | const char *title | |
| 77 | const char *primary | |
| 78 | const char *secondary | |
| 79 | const char **results | |
| 80 | GCallback cb | |
| 81 | void * user_data | |
| 82 | ||
| 83 | void | |
| 84 | gaim_notify_set_ui_ops(ops) | |
| 85 | Gaim::NotifyUiOps ops | |
| 86 | ||
| 87 | void * | |
| 88 | gaim_notify_uri(handle, uri) | |
| 89 | void * handle | |
| 90 | const char *uri | |
| 91 | ||
| 92 | void * | |
| 93 | gaim_notify_userinfo(gc, who, title, primary, secondary, text, cb, user_data) | |
| 94 | Gaim::Connection gc | |
| 95 | const char *who | |
| 96 | const char *title | |
| 97 | const char *primary | |
| 98 | const char *secondary | |
| 99 | const char *text | |
| 100 | GCallback cb | |
| 101 | void * user_data | |
| 102 | ||
| 103 |