]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_reloadmodule.cpp
InspSocket -> BufferedSocket. Paves the way for a SimpleSocket class which ident...
[user/henk/code/inspircd.git] / src / cmd_reloadmodule.cpp
index df198d662d0994604ada5438dc9f45cb004e6c71..a08dc7fec7e893c60551e5c6dc4db2ed06cfae28 100644 (file)
 #include "inspircd.h"
 #include "commands/cmd_reloadmodule.h"
 
-extern "C" DllExport command_t* init_command(InspIRCd* Instance)
+extern "C" DllExport Command* init_command(InspIRCd* Instance)
 {
        return new cmd_reloadmodule(Instance);
 }
 
-CmdResult cmd_reloadmodule::Handle (const char** parameters, int pcnt, userrec *user)
+CmdResult cmd_reloadmodule::Handle (const char** parameters, int pcnt, User *user)
 {
        if (ServerInstance->Modules->Unload(parameters[0]))
        {