Changeset 68a552f in mainline for uspace/lib/c/include
- Timestamp:
- 2021-02-22T19:52:08Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 26853ebc
- Parents:
- 2ab8ab3
- Location:
- uspace/lib/c/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/io/con_srv.h
r2ab8ab3 r68a552f 1 1 /* 2 * Copyright (c) 20 12Jiri Svoboda2 * Copyright (c) 2021 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 39 39 #include <async.h> 40 40 #include <fibril_synch.h> 41 #include <io/charfield.h> 41 42 #include <io/color.h> 42 43 #include <io/concaps.h> … … 83 84 void (*set_cursor_visibility)(con_srv_t *, bool); 84 85 errno_t (*get_event)(con_srv_t *, cons_event_t *); 86 errno_t (*map)(con_srv_t *, sysarg_t, sysarg_t, charfield_t **); 87 void (*unmap)(con_srv_t *); 88 void (*update)(con_srv_t *, sysarg_t, sysarg_t, sysarg_t, sysarg_t); 85 89 }; 86 90 -
uspace/lib/c/include/io/console.h
r2ab8ab3 r68a552f 1 1 /* 2 * Copyright (c) 20 08Jiri Svoboda2 * Copyright (c) 2021 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 37 37 38 38 #include <time.h> 39 #include <io/charfield.h> 39 40 #include <io/concaps.h> 40 41 #include <io/kbd_event.h> … … 86 87 extern bool console_get_event_timeout(console_ctrl_t *, cons_event_t *, 87 88 usec_t *); 89 extern errno_t console_map(console_ctrl_t *, sysarg_t, sysarg_t, 90 charfield_t **); 91 extern void console_unmap(console_ctrl_t *, charfield_t *); 92 extern errno_t console_update(console_ctrl_t *, sysarg_t, sysarg_t, sysarg_t, 93 sysarg_t); 88 94 89 95 #endif -
uspace/lib/c/include/ipc/console.h
r2ab8ab3 r68a552f 1 1 /* 2 * Copyright (c) 2021 Jiri Svoboda 2 3 * Copyright (c) 2006 Josef Cejka 3 4 * All rights reserved. … … 48 49 CONSOLE_SET_COLOR, 49 50 CONSOLE_SET_RGB_COLOR, 50 CONSOLE_SET_CURSOR_VISIBILITY 51 CONSOLE_SET_CURSOR_VISIBILITY, 52 CONSOLE_MAP, 53 CONSOLE_UNMAP, 54 CONSOLE_UPDATE 51 55 } console_request_t; 52 56
Note:
See TracChangeset
for help on using the changeset viewer.