Changeset 1b92d4b in mainline for uspace/app/taskbar/wndlist.h
- Timestamp:
- 2022-11-01T13:22:48Z (2 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fc00f0d
- Parents:
- 913add60
- git-author:
- Jiri Svoboda <jiri@…> (2022-10-31 18:22:34)
- git-committer:
- Jiri Svoboda <jiri@…> (2022-11-01 13:22:48)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskbar/wndlist.h
r913add60 r1b92d4b 38 38 39 39 #include <errno.h> 40 #include <stdbool.h> 40 41 #include <ui/fixed.h> 41 #include <ui/ resource.h>42 #include <ui/window.h> 42 43 #include <wndmgt.h> 43 44 #include "types/wndlist.h" 44 45 45 extern errno_t wndlist_create(ui_ resource_t *, ui_fixed_t *, wndlist_t **);46 extern errno_t wndlist_ attach_wm(wndlist_t *, wndmgt_t*);46 extern errno_t wndlist_create(ui_window_t *, ui_fixed_t *, wndlist_t **); 47 extern errno_t wndlist_open_wm(wndlist_t *, const char *); 47 48 extern void wndlist_destroy(wndlist_t *); 48 extern errno_t wndlist_append(wndlist_t *, const char *); 49 extern errno_t wndlist_append(wndlist_t *, sysarg_t, const char *, bool); 50 extern errno_t wndlist_remove(wndlist_t *, wndlist_entry_t *, bool); 51 extern void wndlist_set_entry_rect(wndlist_t *, wndlist_entry_t *); 52 extern wndlist_entry_t *wndlist_entry_by_id(wndlist_t *, sysarg_t); 53 extern wndlist_entry_t *wndlist_first(wndlist_t *); 54 extern wndlist_entry_t *wndlist_next(wndlist_entry_t *); 55 extern errno_t wndlist_repaint(wndlist_t *); 49 56 50 57 #endif
Note:
See TracChangeset
for help on using the changeset viewer.