Changes in uspace/lib/tbarcfg/private/tbarcfg.h [e63e74a:84d29a2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/tbarcfg/private/tbarcfg.h
re63e74a r84d29a2 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 40 40 #include <adt/list.h> 41 41 #include <sif.h> 42 #include <stdbool.h>43 42 #include <types/tbarcfg/tbarcfg.h> 44 43 … … 61 60 /** SIF node (persistent storage) */ 62 61 sif_node_t *nentry; 63 /** Is this a separator entry */64 bool separator;65 62 /** Entry caption (with accelerator markup) */ 66 63 char *caption; 67 64 /** Command to run */ 68 65 char *cmd; 69 /** Start in terminal */70 bool terminal;71 66 }; 72 67 73 68 extern errno_t smenu_entry_new(tbarcfg_t *, sif_node_t *, 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 **); 69 const char *); 76 70 extern void smenu_entry_delete(smenu_entry_t *); 77 71
Note:
See TracChangeset
for help on using the changeset viewer.