| | 358 | | command_bind("action", NULL, (SIGNAL_FUNC) cmd_action);
| | | 359 | | command_bind("ctcp", NULL, (SIGNAL_FUNC) cmd_ctcp);
| | | 360 | | signal_add("dcc error close not found", (SIGNAL_FUNC) dcc_error_close_not_found);
| | | 361 | | } | | | 362 | | | | | 363 | | void fe_dcc_chat_deinit(void) | | | 364 | | { | | | 365 | | fe_dcc_chat_messages_deinit(); | | | 366 | | | | | 367 | | signal_remove("dcc request", (SIGNAL_FUNC) dcc_request);
| | Wrong Number of Parameters | 368 | | signal_remove("dcc connected", (SIGNAL_FUNC) dcc_connected);
| | | 369 | | signal_remove("dcc closed", (SIGNAL_FUNC) dcc_closed);
| | | 370 | | signal_remove("dcc chat message", (SIGNAL_FUNC) dcc_chat_msg);
| | | 371 | | signal_remove("dcc ctcp action", (SIGNAL_FUNC) dcc_chat_action);
| | | 372 | | signal_remove("default dcc ctcp", (SIGNAL_FUNC) dcc_chat_ctcp);
| | | 373 | | signal_remove("dcc error ctcp", (SIGNAL_FUNC) dcc_error_ctcp);
| | | 374 | | signal_remove("default ctcp msg dcc", (SIGNAL_FUNC) dcc_unknown_ctcp);
| | | 375 | | signal_remove("default ctcp reply dcc", (SIGNAL_FUNC) dcc_unknown_reply);
| | | 376 | | signal_remove("dcc destroyed", (SIGNAL_FUNC) sig_dcc_destroyed);
| | | 377 | | signal_remove("query destroyed", (SIGNAL_FUNC) sig_query_destroyed);
| | | 378 | | signal_remove("dcc list print", (SIGNAL_FUNC) sig_dcc_list_print);
|
|