]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/coremods/core_user/core_user.h
cmd_part Send ERR_NOTONCHANNEL if the user is not on the channel
[user/henk/code/inspircd.git] / src / coremods / core_user / core_user.h
index 7cc3d1e05dba0dccf4c7bd333b642c43b6870f1b..0418588c1e2916ff81fd7425590c06ac55108d89 100644 (file)
@@ -64,6 +64,23 @@ class CommandAway : public Command
 
 class CommandMode : public Command
 {
+       unsigned int sent[256];
+       unsigned int seq;
+
+       /** Show the list of one or more list modes to a user.
+        * @param user User to send to.
+        * @param chan Channel whose lists to show.
+        * @param mode_sequence Mode letters to show the lists of.
+        */
+       void DisplayListModes(User* user, Channel* chan, const std::string& mode_sequence);
+
+       /** Show the current modes of a channel or a user to a user.
+        * @param user User to show the modes to.
+        * @param targetuser User whose modes to show. NULL if showing the modes of a channel.
+        * @param targetchannel Channel whose modes to show. NULL if showing the modes of a user.
+        */
+       void DisplayCurrentModes(User* user, User* targetuser, Channel* targetchannel);
+
  public:
        /** Constructor for mode.
         */