| | 440 | | signal_add("event quit", (SIGNAL_FUNC) event_quit);
| | | 441 | | signal_add("event kick", (SIGNAL_FUNC) event_kick);
| | | 442 | | signal_add("event kill", (SIGNAL_FUNC) event_kill);
| | | 443 | | signal_add("event nick", (SIGNAL_FUNC) event_nick);
| | | 444 | | signal_add("event mode", (SIGNAL_FUNC) event_mode);
| | | 445 | | signal_add("event pong", (SIGNAL_FUNC) event_pong);
| | | 446 | | signal_add("event invite", (SIGNAL_FUNC) event_invite);
| | | 447 | | signal_add("event topic", (SIGNAL_FUNC) event_topic);
| | | 448 | | signal_add("event error", (SIGNAL_FUNC) event_error);
| | | 449 | | signal_add("event wallops", (SIGNAL_FUNC) event_wallops);
| | Wrong Number of Parameters | 450 | | signal_add("event silence", (SIGNAL_FUNC) event_silence);
| | | 451 | | | | | 452 | | signal_add("default event", (SIGNAL_FUNC) event_received);
| | | 453 | | | | | 454 | | signal_add("channel sync", (SIGNAL_FUNC) channel_sync);
| | | 455 | | signal_add("event connected", (SIGNAL_FUNC) event_connected);
| | | 456 | | signal_add("nickfind event whois", (SIGNAL_FUNC) event_nickfind_whois);
| | | 457 | | signal_add("ban type changed", (SIGNAL_FUNC) event_ban_type_changed);
| | | 458 | | signal_add("whois event not found", (SIGNAL_FUNC) sig_whois_event_not_found);
| | | 459 | | signal_add("whowas event end", (SIGNAL_FUNC) sig_whowas_event_end);
| | | 460 | | } |
|