* This function mask the parameter with CMD_ID_MASK and returns * the flags which belongs to the given command. * * @param cmd The integer value of the command * @return The flags for this command */
| 116 | * @return The flags for this command |
| 117 | */ |
| 118 | CommandFlags GetCommandFlags(Commands cmd) |
| 119 | { |
| 120 | assert(IsValidCommand(cmd)); |
| 121 | |
| 122 | return _command_proc_table[cmd].flags; |
| 123 | } |
| 124 | |
| 125 | /** |
| 126 | * This function mask the parameter with CMD_ID_MASK and returns |
no test coverage detected