Changeset accdf882 in mainline for uspace/lib/ui/src/filelist.c
- Timestamp:
- 2025-02-05T21:26:26Z (8 days ago)
- Branches:
- master
- Children:
- 74a165cc, b336bfd8
- Parents:
- 832cbe7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/src/filelist.c
r832cbe7 raccdf882 1 1 /* 2 * Copyright (c) 202 3Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 535 535 } 536 536 537 /** Get file list entry attributes. 538 * 539 * @param entry File list entry 540 * @return Current cursor 541 */ 542 void ui_file_list_entry_get_attr(ui_file_list_entry_t *entry, 543 ui_file_list_entry_attr_t *attr) 544 { 545 attr->name = entry->name; 546 attr->size = entry->size; 547 attr->isdir = entry->isdir; 548 attr->svc = entry->svc; 549 } 550 537 551 /** Open file list entry. 538 552 *
Note:
See TracChangeset
for help on using the changeset viewer.