Changeset f2cb80a in mainline for uspace/lib/tbarcfg/private/tbarcfg.h
- Timestamp:
- 2024-02-23T17:57:23Z (11 months ago)
- Children:
- 192019f
- Parents:
- 86f862c (diff), 90ba06c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2024-02-23 17:57:23)
- git-committer:
- GitHub <noreply@…> (2024-02-23 17:57:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/tbarcfg/private/tbarcfg.h
r86f862c rf2cb80a 1 1 /* 2 * Copyright (c) 202 3Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 40 40 #include <adt/list.h> 41 41 #include <sif.h> 42 #include <stdbool.h> 42 43 #include <types/tbarcfg/tbarcfg.h> 43 44 … … 60 61 /** SIF node (persistent storage) */ 61 62 sif_node_t *nentry; 63 /** Is this a separator entry */ 64 bool separator; 62 65 /** Entry caption (with accelerator markup) */ 63 66 char *caption; 64 67 /** Command to run */ 65 68 char *cmd; 69 /** Start in terminal */ 70 bool terminal; 66 71 }; 67 72 68 73 extern errno_t smenu_entry_new(tbarcfg_t *, sif_node_t *, const char *, 69 const char *); 74 const char *, bool, smenu_entry_t **); 75 extern errno_t smenu_entry_sep_new(tbarcfg_t *, sif_node_t *, smenu_entry_t **); 70 76 extern void smenu_entry_delete(smenu_entry_t *); 71 77
Note:
See TracChangeset
for help on using the changeset viewer.