Changeset d4d8255 in mainline for kernel/generic/include/console/kconsole.h
- Timestamp:
- 2016-03-09T20:01:43Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c1b8ad4
- Parents:
- df425da (diff), dc0e41c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/console/kconsole.h
rdf425da rd4d8255 43 43 #define KCONSOLE_HISTORY 10 44 44 45 /** Callback to be used to enum hints for cmd tab completion. */ 46 typedef const char *(*hints_enum_func_t)(const char *, const char **, void **); 47 45 48 typedef enum { 46 49 ARG_TYPE_INVALID = 0, … … 85 88 /** Function for printing detailed help. */ 86 89 void (* help)(void); 90 /** Function for enumerating hints for arguments. */ 91 hints_enum_func_t hints_enum; 87 92 } cmd_info_t; 88 93 … … 100 105 101 106 extern bool cmd_register(cmd_info_t *cmd); 107 extern const char *cmdtab_enum(const char *name, const char **h, void **ctx); 102 108 103 109 #endif
Note:
See TracChangeset
for help on using the changeset viewer.