1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-06 16:13:12 +02:00

Changed some function names

This commit is contained in:
codemastr
2001-11-19 20:30:30 +00:00
parent 28b8a0ef9b
commit e57336c9c7
7 changed files with 28 additions and 18 deletions
+2 -2
View File
@@ -112,7 +112,7 @@ int scan_http_init(int module_load)
/*
* Add scanning hooks
*/
add_HookX(HOOKTYPE_SCAN_HOST, NULL, scan_http_scan);
HookAddEx(HOOKTYPE_SCAN_HOST, NULL, scan_http_scan);
}
/* Is first run when server is 100% ready */
@@ -132,7 +132,7 @@ DLLFUNC void mod_unload(void)
void scan_http_unload(void)
#endif
{
del_HookX(HOOKTYPE_SCAN_HOST, NULL, scan_http_scan);
HookDelEx(HOOKTYPE_SCAN_HOST, NULL, scan_http_scan);
}
#define HICHAR(s) (((unsigned short) s) >> 8)