Changeset b279899 in mainline for uspace/lib/tbarcfg/include
- 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)
- Location:
- uspace/lib/tbarcfg/include
- Files:
-
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/tbarcfg/include/tbarcfg/tbarcfg.h
r4030072 rb279899 27 27 */ 28 28 29 /** @addtogroup lib startmenu29 /** @addtogroup libtbarcfg 30 30 * @{ 31 31 */ … … 34 34 */ 35 35 36 #ifndef _ STARTMENU_STARTMENU_H37 #define _ STARTMENU_STARTMENU_H36 #ifndef _TBARCFG_TBARCFG_H 37 #define _TBARCFG_TBARCFG_H 38 38 39 39 #include <errno.h> 40 #include <types/ startmenu/startmenu.h>40 #include <types/tbarcfg/tbarcfg.h> 41 41 42 extern errno_t startmenu_open(const char *, startmenu_t **);43 extern void startmenu_close(startmenu_t *);44 extern s tartmenu_entry_t *startmenu_first(startmenu_t *);45 extern s tartmenu_entry_t *startmenu_next(startmenu_entry_t *);46 extern const char *s tartmenu_entry_get_caption(startmenu_entry_t *);47 extern const char *s tartmenu_entry_get_cmd(startmenu_entry_t *);42 extern errno_t tbarcfg_open(const char *, tbarcfg_t **); 43 extern void tbarcfg_close(tbarcfg_t *); 44 extern smenu_entry_t *tbarcfg_smenu_first(tbarcfg_t *); 45 extern smenu_entry_t *tbarcfg_smenu_next(smenu_entry_t *); 46 extern const char *smenu_entry_get_caption(smenu_entry_t *); 47 extern const char *smenu_entry_get_cmd(smenu_entry_t *); 48 48 49 49 #endif -
uspace/lib/tbarcfg/include/types/tbarcfg/tbarcfg.h
r4030072 rb279899 27 27 */ 28 28 29 /** @addtogroup lib startmenu29 /** @addtogroup libtbarcfg 30 30 * @{ 31 31 */ … … 34 34 */ 35 35 36 #ifndef _ STARTMENU_TYPES_STARTMENU_H37 #define _ STARTMENU_TYPES_STARTMENU_H36 #ifndef _TBARCFG_TYPES_TBARCFG_H 37 #define _TBARCFG_TYPES_TBARCFG_H 38 38 39 struct startmenu;40 typedef struct startmenu startmenu_t;39 struct tbarcfg; 40 typedef struct tbarcfg tbarcfg_t; 41 41 42 struct s tartmenu_entry;43 typedef struct s tartmenu_entry startmenu_entry_t;42 struct smenu_entry; 43 typedef struct smenu_entry smenu_entry_t; 44 44 45 45 #endif
Note:
See TracChangeset
for help on using the changeset viewer.