Changes in uspace/lib/c/include/io/console.h [5d94b16c:111d2d6] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/io/console.h
r5d94b16c r111d2d6 37 37 38 38 #include <sys/time.h> 39 #include <io/concaps.h>40 39 #include <io/kbd_event.h> 41 40 #include <io/keycode.h> … … 43 42 #include <bool.h> 44 43 #include <stdio.h> 44 45 typedef enum { 46 CONSOLE_CAP_NONE = 0, 47 CONSOLE_CAP_STYLE = 1, 48 CONSOLE_CAP_INDEXED = 2, 49 CONSOLE_CAP_RGB = 4 50 } console_caps_t; 45 51 46 52 /** Console control structure. */
Note:
See TracChangeset
for help on using the changeset viewer.