summaryrefslogtreecommitdiff
path: root/src/cmd_whois.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-09-03 00:09:38 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-09-03 00:09:38 +0000
commit1b7c615062a7b203c7fc3ce4c56e16eb671f7c15 (patch)
treee5b6369422834d66285e987cfb152d87d5b56943 /src/cmd_whois.cpp
parentf5a50a0b6d89ff786c288453d58b7d8f01006954 (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_whois.cpp')
-rw-r--r--src/cmd_whois.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cmd_whois.cpp b/src/cmd_whois.cpp
index 3e8406dd1..a9577f168 100644
--- a/src/cmd_whois.cpp
+++ b/src/cmd_whois.cpp
@@ -91,6 +91,13 @@ void do_whois(InspIRCd* ServerInstance, userrec* user, userrec* dest,unsigned lo
}
}
+
+
+extern "C" command_t* init_command(InspIRCd* Instance)
+{
+ return new cmd_whois(Instance);
+}
+
void cmd_whois::Handle (const char** parameters, int pcnt, userrec *user)
{
userrec *dest;