Changeset 5ebff60 for commands.h
- Timestamp:
- 2015-02-20T22:50:54Z (8 years ago)
- Branches:
- master
- Children:
- 0b9daac, 3d45471, 7733b8c
- Parents:
- af359b4
- git-author:
- Indent <please@…> (19-02-15 05:47:20)
- git-committer:
- dequis <dx@…> (20-02-15 22:50:54)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
commands.h
raf359b4 r5ebff60 1 1 /********************************************************************\ 2 2 * BitlBee -- An IRC to other IM-networks gateway * 3 3 * * … … 29 29 #include "bitlbee.h" 30 30 31 typedef struct command 32 { 31 typedef struct command { 33 32 char *command; 34 33 int required_parameters; … … 39 38 extern command_t root_commands[]; 40 39 41 #define IRC_CMD_PRE_LOGIN 42 #define IRC_CMD_LOGGED_IN 43 #define IRC_CMD_OPER_ONLY 44 #define IRC_CMD_TO_MASTER 40 #define IRC_CMD_PRE_LOGIN 1 41 #define IRC_CMD_LOGGED_IN 2 42 #define IRC_CMD_OPER_ONLY 4 43 #define IRC_CMD_TO_MASTER 8 45 44 46 #define IPC_CMD_TO_CHILDREN 45 #define IPC_CMD_TO_CHILDREN 1 47 46 48 47 #endif
Note: See TracChangeset
for help on using the changeset viewer.