X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fmodules.c;h=7310c88465152f21f1dc0351869489867d1346e4;hb=a40e0df080a82db2b1150492a8952cdfe3559185;hp=5e0c8262f561d3432e1d148d5ab97e096a9082ca;hpb=480b0bf9797e32398b494a30ebf56101ec35033b;p=NeonServV5.git diff --git a/src/modules.c b/src/modules.c index 5e0c826..7310c88 100644 --- a/src/modules.c +++ b/src/modules.c @@ -1,4 +1,4 @@ -/* modules.c - NeonServ v5.5 +/* modules.c - NeonServ v5.6 * Copyright (C) 2011-2012 Philipp Kreil (pk910) * * This program is free software: you can redistribute it and/or modify @@ -19,7 +19,10 @@ #include #endif -/* 000-011 */ #include "main.h" +/* 000-001 */ #include "main.h" +/* 002-004 */ #include "tools.h" +/* 005-006 */ /* deprecated */ +/* 007-011 */ /* main.h */ /* 012 */ #include "BanNode.h" /* 013-019 */ #include "bots.h" /* 020-025 */ #include "ChanNode.h" @@ -40,7 +43,7 @@ /* 126-136 */ #include "ModeNode.h" /* 137-142 */ #include "mysqlConn.h" /* 143-149 */ #include "timeq.h" -/* 150-169 */ #include "tools.h" +/* 150-169 */ /* tools.h */ /* 170-180 */ #include "UserNode.h" /* 181-183 */ #include "WHOHandler.h" /* 184-188 */ #include "version.h" @@ -49,17 +52,18 @@ /* 191-193 */ #include "ModuleFunctions.h" /* 194 */ /* bots.h */ /* 195-196 */ /* version.h */ +/* 197-198 */ /* IRCEvents.h */ #define Function void * void *global_functions[] = { /* 000 */ (Function) getStartTime, /* 001 */ (Function) getRunningThreads, -/* 002 */ (Function) exit_daemon, +/* 002 */ (Function) getCurrentSecondsOfDay, /* 003 */ (Function) stricmp, /* 004 */ (Function) stricmplen, -/* 005 */ (Function) restart_process, -/* 006 */ (Function) cleanup, +/* 005 */ (Function) NULL, /* deprecated */ +/* 006 */ (Function) NULL, /* deprecated */ /* 007 */ (Function) restart_bot, /* 008 */ (Function) stop_bot, /* 009 */ (Function) reload_config, @@ -260,7 +264,9 @@ void *global_functions[] = { /* 193 */ (Function) module_neonbackup_recover_chan, /* 194 */ (Function) requestInvite, /* 195 */ (Function) is_stable_revision, -/* 196 */ (Function) get_dev_revision +/* 196 */ (Function) get_dev_revision, +/* 197 */ (Function) bind_freeclient, +/* 198 */ (Function) unbind_freeclient }; static int module_id_counter = 1;