Changeset 73060801 in mainline for uspace/lib/clui/tinput.h


Ignore:
Timestamp:
2010-04-04T22:02:11Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3aae4e8, ecb6ac32
Parents:
ee7e82a9 (diff), 5db9084 (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.
Message:

Merge Ctrl-Q CLUI feature.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/clui/tinput.h

    ree7e82a9 r73060801  
    6464        /** Current position in history */
    6565        int hpos;
    66         /** Exit flag */
     66        /** @c true if finished with this line (return to caller) */
    6767        bool done;
     68        /** @c true if user requested to abort interactive loop */
     69        bool exit_clui;
    6870} tinput_t;
    6971
    7072extern tinput_t *tinput_new(void);
    7173extern void tinput_destroy(tinput_t *ti);
    72 extern char *tinput_read(tinput_t *ti);
     74extern int tinput_read(tinput_t *ti, char **str);
    7375
    7476#endif
Note: See TracChangeset for help on using the changeset viewer.