Changes in uspace/lib/clui/tinput.h [09ab0a9a:28a5ebd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/clui/tinput.h
r09ab0a9a r28a5ebd 63 63 * @return EOK on success, error code on failure. 64 64 */ 65 typedef errno_t (*tinput_compl_init_fn)( wchar_t *text, size_t pos, size_t *cstart,65 typedef errno_t (*tinput_compl_init_fn)(char32_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 wchar_t buffer[INPUT_MAX_SIZE + 1];113 char32_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.