Changeset b279899 in mainline for uspace/lib/tbarcfg/private
- Timestamp:
- 2023-10-17T12:18:10Z (2 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d4643db
- Parents:
- 4030072
- git-author:
- Jiri Svoboda <jiri@…> (2023-10-16 18:17:59)
- git-committer:
- Jiri Svoboda <jiri@…> (2023-10-17 12:18:10)
- File:
-
- 1 moved
-
uspace/lib/tbarcfg/private/tbarcfg.h (moved) (moved from uspace/lib/startmenu/private/startmenu.h ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/tbarcfg/private/tbarcfg.h
r4030072 rb279899 27 27 */ 28 28 29 /** @addtogroup lib startmenu29 /** @addtogroup libtbarcfg 30 30 * @{ 31 31 */ 32 32 /** 33 * @file Start menu33 * @file Task bar configuration 34 34 * 35 35 */ 36 36 37 #ifndef _ STARTMENU_PRIVATE_STARTMENU_H38 #define _ STARTMENU_PRIVATE_STARTMENU_H37 #ifndef _TBARCFG_PRIVATE_TBARCFG_H 38 #define _TBARCFG_PRIVATE_TBARCFG_H 39 39 40 40 #include <adt/list.h> 41 41 #include <sif.h> 42 #include <types/ startmenu/startmenu.h>42 #include <types/tbarcfg/tbarcfg.h> 43 43 44 /** Start menu*/45 struct startmenu{46 /** List of entries (startmenu_entry_t) */44 /** Task bar configuration */ 45 struct tbarcfg { 46 /** List of start menu entries (smenu_entry_t) */ 47 47 list_t entries; 48 48 }; 49 49 50 50 /** Start menu entry */ 51 struct s tartmenu_entry {51 struct smenu_entry { 52 52 /** Containing start menu */ 53 struct startmenu*smenu;53 struct tbarcfg *smenu; 54 54 /** Link to @c smenu->entries */ 55 55 link_t lentries; … … 60 60 }; 61 61 62 extern errno_t s tartmenu_entry_create(startmenu_t *, const char *,62 extern errno_t smenu_entry_create(tbarcfg_t *, const char *, 63 63 const char *); 64 64
Note:
See TracChangeset
for help on using the changeset viewer.
