Changeset f4338d2 in mainline for generic/include/console/kconsole.h
- Timestamp:
- 2005-11-26T22:48:17Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a8c48241
- Parents:
- ff3b3197
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
generic/include/console/kconsole.h
rff3b3197 rf4338d2 44 44 cmd_arg_type_t type; /**< Type descriptor. */ 45 45 void *buffer; /**< Buffer where to store data. */ 46 size_t buflen; /**< Size of the buffer. */46 size_t len; /**< Size of the buffer. */ 47 47 }; 48 48 … … 53 53 const char *name; /**< Command name. */ 54 54 const char *description; /**< Textual description. */ 55 int (* func)(cmd_arg_t * cmd); /**< Function implementing the command. */55 int (* func)(cmd_arg_t *); /**< Function implementing the command. */ 56 56 count_t argc; /**< Number of arguments. */ 57 57 cmd_arg_t *argv; /**< Argument vector. */ 58 void (* help)(void); /**< Function for printing detailed help. */ 58 59 }; 59 60
Note:
See TracChangeset
for help on using the changeset viewer.