Changeset 95fc538 in mainline for uspace/lib
- Timestamp:
- 2023-10-26T11:51:50Z (2 years ago)
- Branches:
- master, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d28bdbe
- Parents:
- cb2894e
- Location:
- uspace/lib/tbarcfg
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/tbarcfg/private/tbarcfg.h
rcb2894e r95fc538 31 31 */ 32 32 /** 33 * @file Task 33 * @file Taskbar configuration 34 34 * 35 35 */ … … 42 42 #include <types/tbarcfg/tbarcfg.h> 43 43 44 /** Task 44 /** Taskbar configuration */ 45 45 struct tbarcfg { 46 46 /** List of start menu entries (smenu_entry_t) */ -
uspace/lib/tbarcfg/src/tbarcfg.c
rcb2894e r95fc538 31 31 */ 32 32 /** 33 * @file Task 33 * @file Taskbar configuration 34 34 */ 35 35 … … 41 41 #include "../private/tbarcfg.h" 42 42 43 /** Open task 43 /** Open taskbar configuration. 44 44 * 45 45 * @param repopath Pathname of the menu repository 46 * @param rtbcfg Place to store pointer to task 46 * @param rtbcfg Place to store pointer to taskbar configuration 47 47 * @return EOK on success or an error code 48 48 */ … … 116 116 } 117 117 118 /** Close task 118 /** Close taskbar configuration. 119 119 * 120 120 * @param tbcfg Start menu … … 126 126 /** Get first start menu entry. 127 127 * 128 * @param tbcfg Task 128 * @param tbcfg Taskbar configuration 129 129 * @return First entry or @c NULL if the menu is empty 130 130 */ -
uspace/lib/tbarcfg/test/tbarcfg.c
rcb2894e r95fc538 36 36 PCUT_TEST_SUITE(tbarcfg); 37 37 38 /** Opening and closing task 38 /** Opening and closing taskbar configuration */ 39 39 PCUT_TEST(open_close) 40 40 {
Note:
See TracChangeset
for help on using the changeset viewer.