Changes in uspace/lib/tbarcfg/private/tbarcfg.h [84d29a2:e63e74a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/tbarcfg/private/tbarcfg.h
r84d29a2 re63e74a 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.