Changes in uspace/lib/tbarcfg/private/tbarcfg.h [ee3b28a9:bff8619] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/tbarcfg/private/tbarcfg.h
ree3b28a9 rbff8619 39 39 40 40 #include <adt/list.h> 41 #include <sif.h>42 41 #include <stdbool.h> 43 42 #include <types/tbarcfg/tbarcfg.h> … … 45 44 /** Taskbar configuration */ 46 45 struct tbarcfg { 47 /** Repository session*/48 sif_sess_t *repo;46 /** Configuration file path */ 47 char *cfgpath; 49 48 /** List of start menu entries (smenu_entry_t) */ 50 49 list_t entries; 51 /** Entries SIF node */52 sif_node_t *nentries;53 50 }; 54 51 … … 59 56 /** Link to @c smenu->entries */ 60 57 link_t lentries; 61 /** SIF node (persistent storage) */62 sif_node_t *nentry;63 58 /** Is this a separator entry */ 64 59 bool separator; … … 79 74 } tbarcfg_listener_t; 80 75 81 extern errno_t smenu_entry_new(tbarcfg_t *, sif_node_t *, const char *,82 const char *, bool, smenu_entry_t **);83 extern errno_t smenu_entry_sep_new(tbarcfg_t *, sif_node_t *, smenu_entry_t **);84 extern void smenu_entry_delete(smenu_entry_t *);85 86 76 #endif 87 77
Note:
See TracChangeset
for help on using the changeset viewer.