Changeset 77ffa01 in mainline for uspace/lib/ui/private/ui.h
- Timestamp:
- 2021-02-27T21:34:15Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c7dc8e
- Parents:
- b433f68
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/private/ui.h
rb433f68 r77ffa01 1 1 /* 2 * Copyright (c) 202 0Jiri Svoboda2 * Copyright (c) 2021 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 39 39 40 40 #include <display.h> 41 #include <io/console.h> 41 42 #include <stdbool.h> 42 43 … … 46 47 */ 47 48 struct ui { 49 /** Console */ 50 console_ctrl_t *console; 48 51 /** Display */ 49 52 display_t *display; … … 52 55 /** @c true if terminating */ 53 56 bool quit; 57 /** Root window (in fullscreen/console mode) */ 58 struct ui_window *root_wnd; 54 59 }; 55 60
Note:
See TracChangeset
for help on using the changeset viewer.