summaryrefslogtreecommitdiff
path: root/include/ctables.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-11 13:08:31 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-11 13:08:31 +0000
commitc12034634020cac5c17b6845613c2c168d174d3d (patch)
tree7c2cb55433c3cde9ca6daabb12d6a43f779cd38b /include/ctables.h
parentec8a311cccb90f1397dca47c200300678a4e36aa (diff)
Added 'i' and 't' type link datagrams
Fixed /mode #channel +b glitch git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@521 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/ctables.h')
-rw-r--r--include/ctables.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/ctables.h b/include/ctables.h
index 5ca5e13b3..ab39bf5f3 100644
--- a/include/ctables.h
+++ b/include/ctables.h
@@ -27,17 +27,17 @@ typedef void (handlerfunc) (char**, int, userrec*);
class command_t : public classbase
{
public:
- /** Command name
- */
+ /** Command name
+ */
char command[MAXBUF];
/** Handler function as in typedef
- */
+ */
handlerfunc *handler_function;
/** User flags needed to execute the command or 0
*/
char flags_needed;
- /** Minimum number of parameters command takes
- */
+ /** Minimum number of parameters command takes
+ */
int min_params;
/** used by /stats m
*/