]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_privmsg.cpp
Move InspIRCd::IsValidMask() to helperfuncs.cpp
[user/henk/code/inspircd.git] / src / cmd_privmsg.cpp
index 2c54a770a81b1ff39f7b2473d07156aa2447a7cf..96aff839246ae6c00a621ea031e0a6401391fec8 100644 (file)
 
 extern "C" DllExport  Command* init_command(InspIRCd* Instance)
 {
-       return new cmd_privmsg(Instance);
+       return new CommandPrivmsg(Instance);
 }
 
-CmdResult cmd_privmsg::Handle (const char** parameters, int pcnt, userrec *user)
+CmdResult CommandPrivmsg::Handle (const char** parameters, int pcnt, User *user)
 {
-       userrec *dest;
-       chanrec *chan;
+       User *dest;
+       Channel *chan;
        CUList except_list;
 
        user->idle_lastmsg = ServerInstance->Time();