Changes in uspace/lib/clui/tinput.h [28a5ebd:09ab0a9a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/clui/tinput.h
r28a5ebd r09ab0a9a 63 63 * @return EOK on success, error code on failure. 64 64 */ 65 typedef errno_t (*tinput_compl_init_fn)( char32_t *text, size_t pos, size_t *cstart,65 typedef errno_t (*tinput_compl_init_fn)(wchar_t *text, size_t pos, size_t *cstart, 66 66 void **state); 67 67 … … 111 111 112 112 /** Buffer holding text currently being edited */ 113 char32_t buffer[INPUT_MAX_SIZE + 1];113 wchar_t buffer[INPUT_MAX_SIZE + 1]; 114 114 115 115 /** Linear position on screen where the prompt starts */
Note:
See TracChangeset
for help on using the changeset viewer.