Changeset ebb1489 in mainline for uspace/lib/tbarcfg/private/tbarcfg.h
- Timestamp:
- 2024-10-13T08:23:40Z (8 weeks ago)
- Children:
- 0472cf17
- Parents:
- 2a0c827c (diff), b3b79981 (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-10-13 08:23:40)
- git-committer:
- GitHub <noreply@…> (2024-10-13 08:23:40)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/tbarcfg/private/tbarcfg.h
r2a0c827c rebb1489 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.