diff options
| author | 2006-09-03 00:09:38 +0000 | |
|---|---|---|
| committer | 2006-09-03 00:09:38 +0000 | |
| commit | 1b7c615062a7b203c7fc3ce4c56e16eb671f7c15 (patch) | |
| tree | e5b6369422834d66285e987cfb152d87d5b56943 /src/cmd_modules.cpp | |
| parent | cmd_* files are now shared object. This lets make -j optimize the build proce... (diff) | |
Auto loading of commands as shared objects via dlsym (very lightweight interface, just expects a command_t* pointer)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5118 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_modules.cpp')
| -rw-r--r-- | src/cmd_modules.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cmd_modules.cpp b/src/cmd_modules.cpp index 8b1f2ac3f..e1a5b6d4b 100644 --- a/src/cmd_modules.cpp +++ b/src/cmd_modules.cpp @@ -36,6 +36,13 @@ char* itab[] = { "OnOperCompare", "OnChannelDelete", "OnPostOper", "OnSyncOtherMetaData", "OnSetAway", "OnCancelAway", "OnNamesList", NULL }; + + +extern "C" command_t* init_command(InspIRCd* Instance) +{ + return new cmd_modules(Instance); +} + void cmd_modules::Handle (const char** parameters, int pcnt, userrec *user) { for (unsigned int i = 0; i < ServerInstance->Config->module_names.size(); i++) |
