Changeset b7fd2a0 in mainline for uspace/lib/c/include/io/output.h
- Timestamp:
- 2018-01-13T03:10:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/io/output.h
r36f0738 rb7fd2a0 40 40 #include <io/console.h> 41 41 42 extern int output_yield(async_sess_t *);43 extern int output_claim(async_sess_t *);44 extern int output_get_dimensions(async_sess_t *, sysarg_t *, sysarg_t *);45 extern int output_get_caps(async_sess_t *, console_caps_t *);42 extern errno_t output_yield(async_sess_t *); 43 extern errno_t output_claim(async_sess_t *); 44 extern errno_t output_get_dimensions(async_sess_t *, sysarg_t *, sysarg_t *); 45 extern errno_t output_get_caps(async_sess_t *, console_caps_t *); 46 46 47 47 extern frontbuf_handle_t output_frontbuf_create(async_sess_t *, chargrid_t *); 48 48 49 extern int output_cursor_update(async_sess_t *, frontbuf_handle_t);50 extern int output_set_style(async_sess_t *, console_style_t);49 extern errno_t output_cursor_update(async_sess_t *, frontbuf_handle_t); 50 extern errno_t output_set_style(async_sess_t *, console_style_t); 51 51 52 extern int output_update(async_sess_t *, frontbuf_handle_t);53 extern int output_damage(async_sess_t *, frontbuf_handle_t,52 extern errno_t output_update(async_sess_t *, frontbuf_handle_t); 53 extern errno_t output_damage(async_sess_t *, frontbuf_handle_t, 54 54 sysarg_t, sysarg_t, sysarg_t, sysarg_t); 55 55
Note:
See TracChangeset
for help on using the changeset viewer.