| | 162 | | } | | | 163 | | | | | 164 | | void fe_dcc_send_init(void) | | | 165 | | { | | | 166 | | signal_add("dcc connected", (SIGNAL_FUNC) dcc_connected);
| | | 167 | | signal_add("dcc closed", (SIGNAL_FUNC) dcc_closed);
| | | 168 | | signal_add("dcc error file open", (SIGNAL_FUNC) dcc_error_file_open);
| | | 169 | | signal_add("dcc error send exists", (SIGNAL_FUNC) dcc_error_send_exists);
| | | 170 | | signal_add("dcc error send no route", (SIGNAL_FUNC) dcc_error_send_no_route);
| | | 171 | | signal_add("dcc error close not found", (SIGNAL_FUNC) dcc_error_close_not_found);
| | Wrong Number of Parameters | 172 | | signal_add("complete command dcc send", (SIGNAL_FUNC) sig_dcc_send_complete);
| | | 173 | | signal_add("dcc list print", (SIGNAL_FUNC) sig_dcc_list_print);
| | | 174 | | } | | | 175 | | | | | 176 | | void fe_dcc_send_deinit(void) | | | 177 | | { | | | 178 | | signal_remove("dcc connected", (SIGNAL_FUNC) dcc_connected);
| | | 179 | | signal_remove("dcc closed", (SIGNAL_FUNC) dcc_closed);
| | | 180 | | signal_remove("dcc error file open", (SIGNAL_FUNC) dcc_error_file_open);
| | | 181 | | signal_remove("dcc error send exists", (SIGNAL_FUNC) dcc_error_send_exists);
| | | 182 | | signal_remove("dcc error send no route", (SIGNAL_FUNC) dcc_error_send_no_route);
|
|