Changeset 9c7dc8e in mainline for uspace/lib/ui/include
- Timestamp:
- 2021-03-01T10:50:25Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cd74fa8
- Parents:
- 77ffa01
- git-author:
- Jiri Svoboda <jiri@…> (2021-02-28 10:50:05)
- git-committer:
- Jiri Svoboda <jiri@…> (2021-03-01 10:50:25)
- Location:
- uspace/lib/ui/include/ui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/include/ui/resource.h
r77ffa01 r9c7dc8e 39 39 #include <errno.h> 40 40 #include <gfx/context.h> 41 #include <stdbool.h> 41 42 #include <types/ui/resource.h> 42 43 43 extern errno_t ui_resource_create(gfx_context_t *, ui_resource_t **);44 extern errno_t ui_resource_create(gfx_context_t *, bool, ui_resource_t **); 44 45 extern void ui_resource_destroy(ui_resource_t *); 45 46 -
uspace/lib/ui/include/ui/ui.h
r77ffa01 r9c7dc8e 40 40 #include <errno.h> 41 41 #include <io/console.h> 42 #include <stdbool.h> 42 43 #include <types/ui/ui.h> 43 44 … … 48 49 extern void ui_quit(ui_t *); 49 50 extern void ui_run(ui_t *); 51 extern bool ui_is_textmode(ui_t *); 50 52 51 53 #endif
Note:
See TracChangeset
for help on using the changeset viewer.