Changes in uspace/lib/c/include/io/console.h [7c014d1:79ae36dd] in mainline
- File:
-
- 1 edited
-
uspace/lib/c/include/io/console.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/io/console.h
r7c014d1 r79ae36dd 37 37 38 38 #include <sys/time.h> 39 #include <io/keycode.h>40 39 #include <async.h> 41 40 #include <bool.h> … … 43 42 44 43 typedef enum { 45 CONSOLE_C AP_NONE = 0,46 CONSOLE_C AP_STYLE = 1,47 CONSOLE_C AP_INDEXED = 2,48 CONSOLE_C AP_RGB = 444 CONSOLE_CCAP_NONE = 0, 45 CONSOLE_CCAP_STYLE, 46 CONSOLE_CCAP_INDEXED, 47 CONSOLE_CCAP_RGB 49 48 } console_caps_t; 50 49 … … 77 76 /** Console event structure. */ 78 77 typedef struct { 79 /** List handle */80 link_t link;81 82 78 /** Press or release event. */ 83 79 kbd_event_type_t type; 84 80 85 81 /** Keycode of the key that was pressed or released. */ 86 keycode_t key;82 unsigned int key; 87 83 88 84 /** Bitmask of modifiers held. */ 89 keymod_t mods;85 unsigned int mods; 90 86 91 87 /** The character that was generated or '\0' for none. */
Note:
See TracChangeset
for help on using the changeset viewer.
