Changeset b279899 in mainline for uspace/lib/tbarcfg/include


Ignore:
Timestamp:
2023-10-17T12:18:10Z (2 years ago)
Author:
Jiri Svoboda <jiri@…>
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)
Message:

Rename startmenu library to tbarcfg

There may be other aspects of task bar that will need configuring
so let's widen the scope of the library a bit.

Location:
uspace/lib/tbarcfg/include
Files:
2 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/tbarcfg/include/tbarcfg/tbarcfg.h

    r4030072 rb279899  
    2727 */
    2828
    29 /** @addtogroup libstartmenu
     29/** @addtogroup libtbarcfg
    3030 * @{
    3131 */
     
    3434 */
    3535
    36 #ifndef _STARTMENU_STARTMENU_H
    37 #define _STARTMENU_STARTMENU_H
     36#ifndef _TBARCFG_TBARCFG_H
     37#define _TBARCFG_TBARCFG_H
    3838
    3939#include <errno.h>
    40 #include <types/startmenu/startmenu.h>
     40#include <types/tbarcfg/tbarcfg.h>
    4141
    42 extern errno_t startmenu_open(const char *, startmenu_t **);
    43 extern void startmenu_close(startmenu_t *);
    44 extern startmenu_entry_t *startmenu_first(startmenu_t *);
    45 extern startmenu_entry_t *startmenu_next(startmenu_entry_t *);
    46 extern const char *startmenu_entry_get_caption(startmenu_entry_t *);
    47 extern const char *startmenu_entry_get_cmd(startmenu_entry_t *);
     42extern errno_t tbarcfg_open(const char *, tbarcfg_t **);
     43extern void tbarcfg_close(tbarcfg_t *);
     44extern smenu_entry_t *tbarcfg_smenu_first(tbarcfg_t *);
     45extern smenu_entry_t *tbarcfg_smenu_next(smenu_entry_t *);
     46extern const char *smenu_entry_get_caption(smenu_entry_t *);
     47extern const char *smenu_entry_get_cmd(smenu_entry_t *);
    4848
    4949#endif
  • uspace/lib/tbarcfg/include/types/tbarcfg/tbarcfg.h

    r4030072 rb279899  
    2727 */
    2828
    29 /** @addtogroup libstartmenu
     29/** @addtogroup libtbarcfg
    3030 * @{
    3131 */
     
    3434 */
    3535
    36 #ifndef _STARTMENU_TYPES_STARTMENU_H
    37 #define _STARTMENU_TYPES_STARTMENU_H
     36#ifndef _TBARCFG_TYPES_TBARCFG_H
     37#define _TBARCFG_TYPES_TBARCFG_H
    3838
    39 struct startmenu;
    40 typedef struct startmenu startmenu_t;
     39struct tbarcfg;
     40typedef struct tbarcfg tbarcfg_t;
    4141
    42 struct startmenu_entry;
    43 typedef struct startmenu_entry startmenu_entry_t;
     42struct smenu_entry;
     43typedef struct smenu_entry smenu_entry_t;
    4444
    4545#endif
Note: See TracChangeset for help on using the changeset viewer.