diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-06-17 18:10:34 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-06-17 18:10:34 +0000 |
commit | 9a7826b0e864e1f4cb1cfa024b0d6e480af753d3 (patch) | |
tree | e732cb911cc8f6d766fc252227d4f33445e2eab1 /include/ctables.h | |
parent | 1f113d5477268b9ac53a98e418b483103327fb7e (diff) |
Comments
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7372 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/ctables.h')
-rw-r--r-- | include/ctables.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ctables.h b/include/ctables.h index c3d2f7b43..e8a3337fd 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -19,6 +19,7 @@ #include "hash_map.h" #include "base.h" +/* Forward declarations - required */ class userrec; class InspIRCd; @@ -29,10 +30,10 @@ enum CmdResult CMD_FAILURE = 0, /* Command exists, but failed */ CMD_SUCCESS = 1, /* Command exists, and succeeded */ CMD_INVALID = 2, /* Command doesnt exist at all! */ - CMD_USER_DELETED = 3 /* User was deleted! */ + CMD_USER_DELETED = 3 /* User was deleted - DEPRECIATED */ }; -/* For commands which should not be replicated to other +/** For commands which should not be replicated to other * servers, we usually return CMD_FAILURE. this isnt readable, * so we define this alias for CMD_FAILURE called * CMD_LOCALONLY, which of course does the same thing but is |