Changeset 9bec33a in mainline for uspace/app/taskbar/types/tbsmenu.h
- Timestamp:
- 2023-10-09T11:13:19Z (17 months ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 983052c
- Parents:
- 7d78e466
- git-author:
- Jiri Svoboda <jiri@…> (2023-10-08 17:13:00)
- git-committer:
- Jiri Svoboda <jiri@…> (2023-10-09 11:13:19)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskbar/types/tbsmenu.h
r7d78e466 r9bec33a 43 43 #include <ui/fixed.h> 44 44 #include <ui/menu.h> 45 #include <ui/menuentry.h> 45 46 #include <ui/window.h> 46 47 … … 51 52 /** Link to tbsmenu->entries */ 52 53 link_t lentries; 54 /** Menu entry */ 55 ui_menu_entry_t *mentry; 56 /** Caption */ 57 char *caption; 58 /** Command to run */ 59 char *cmd; 53 60 } tbsmenu_entry_t; 54 61 … … 79 86 } tbsmenu_t; 80 87 88 /** Command split into individual parts */ 89 typedef struct { 90 /** Buffer holding broken down command */ 91 char *buf; 92 /** NULL-terminated array of string pointers */ 93 char **argv; 94 } tbsmenu_cmd_t; 95 81 96 #endif 82 97
Note:
See TracChangeset
for help on using the changeset viewer.