Changes in uspace/lib/c/include/io/console.h [369a5f8:63f8966] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/io/console.h
r369a5f8 r63f8966 44 44 } console_ev_type_t; 45 45 46 typedefenum {46 enum { 47 47 CONSOLE_CCAP_NONE = 0, 48 48 CONSOLE_CCAP_STYLE, 49 49 CONSOLE_CCAP_INDEXED, 50 50 CONSOLE_CCAP_RGB 51 } console_caps_t;51 }; 52 52 53 53 /** Console event structure. */ … … 68 68 extern void console_clear(int phone); 69 69 70 extern int console_get_size(int phone, i pcarg_t *cols, ipcarg_t *rows);71 extern int console_get_pos(int phone, i pcarg_t *col, ipcarg_t *row);72 extern void console_ set_pos(int phone, ipcarg_t col, ipcarg_t row);70 extern int console_get_size(int phone, int *cols, int *rows); 71 extern int console_get_pos(int phone, int *col, int *row); 72 extern void console_goto(int phone, int col, int row); 73 73 74 extern void console_set_style(int phone, uint8_t style); 75 extern void console_set_color(int phone, uint8_t fg_color, uint8_t bg_color, 76 uint8_t flags); 77 extern void console_set_rgb_color(int phone, uint32_t fg_color, uint32_t bg_color); 74 extern void console_set_style(int phone, int style); 75 extern void console_set_color(int phone, int fg_color, int bg_color, int flags); 76 extern void console_set_rgb_color(int phone, int fg_color, int bg_color); 78 77 79 78 extern void console_cursor_visibility(int phone, bool show); 80 extern int console_get_color_cap(int phone, i pcarg_t *ccap);79 extern int console_get_color_cap(int phone, int *ccap); 81 80 extern void console_kcon_enable(int phone); 82 81
Note:
See TracChangeset
for help on using the changeset viewer.