| 105 char *handler_args; |
105 char *handler_args; |
| 106 gint iotag; |
106 gint iotag; |
| 107 GaimPlugin *plug; |
107 GaimPlugin *plug; |
| 108 }; |
108 }; |
| 109 |
109 |
| |
110 static GaimPlugin *my_plugin = NULL; |
| 110 static GList *perl_list = NULL; |
111 static GList *perl_list = NULL; |
| 111 static GList *perl_timeout_handlers = NULL; |
112 static GList *perl_timeout_handlers = NULL; |
| 112 static GList *perl_event_handlers = NULL; |
113 static GList *perl_event_handlers = NULL; |
| 113 static PerlInterpreter *my_perl = NULL; |
114 static PerlInterpreter *my_perl = NULL; |
| 114 static void perl_init(); |
115 static void perl_init(); |
| 656 dXSARGS; |
657 dXSARGS; |
| 657 items = 0; |
658 items = 0; |
| 658 |
659 |
| 659 title = SvPV(ST(0), junk); |
660 title = SvPV(ST(0), junk); |
| 660 message = SvPV(ST(1), junk); |
661 message = SvPV(ST(1), junk); |
| 661 do_error_dialog(title, message, GAIM_INFO); |
662 gaim_dialog_info(my_plugin, NULL, title, message); |
| 662 XSRETURN(0); |
663 XSRETURN(0); |
| 663 } |
664 } |
| 664 |
665 |
| 665 XS (XS_GAIM_buddy_list) |
666 XS (XS_GAIM_buddy_list) |
| 666 { |
667 { |