Changeset f9c4c433 in mainline for uspace/lib/ui/include/types
- Timestamp:
- 2025-09-16T13:02:37Z (6 months ago)
- Branches:
- master
- Children:
- 283bb9f
- Parents:
- 113fb4f
- File:
-
- 1 edited
-
uspace/lib/ui/include/types/ui/list.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/include/types/ui/list.h
r113fb4f rf9c4c433 1 1 /* 2 * Copyright (c) 202 3Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 38 38 39 39 #include <gfx/color.h> 40 #include <stddef.h> 40 41 41 42 struct ui_list; … … 67 68 } ui_list_cb_t; 68 69 70 /** Saved list position. */ 71 typedef struct { 72 /** Page index */ 73 size_t page_idx; 74 /** Cursor index */ 75 size_t cursor_idx; 76 } ui_list_pos_t; 77 69 78 #endif 70 79
Note:
See TracChangeset
for help on using the changeset viewer.
