# | Line 74 | Line 74 | typedef int (*MessageHandler)(struct Cli | |
---|---|---|
74 | struct Message | |
75 | { | |
76 | const char *cmd; | |
77 | + | void *extra; |
78 | unsigned int count; /* number of times command used */ | |
79 | unsigned int rcount; /* number of times command used by server */ | |
80 | unsigned int args_min; /* at least this many args must be passed | |
# | Line 99 | Line 100 | struct Message | |
100 | #define MFLG_SLOW 0x001 /* Command can be executed roughly | |
101 | * once per 2 seconds. | |
102 | */ | |
103 | + | #define MFLG_EXTRA 0x002 |
104 | #define MAXPARA 15 | |
105 | ||
106 | extern void parse(struct Client *, char *, char *); |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |