Changeset 9bec33a in mainline for uspace/app/taskbar/types/tbsmenu.h


Ignore:
Timestamp:
2023-10-09T11:13:19Z (17 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
983052c
Parents:
7d78e466
git-author:
Jiri Svoboda <jiri@…> (2023-10-08 17:13:00)
git-committer:
Jiri Svoboda <jiri@…> (2023-10-09 11:13:19)
Message:

It's a start!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/taskbar/types/tbsmenu.h

    r7d78e466 r9bec33a  
    4343#include <ui/fixed.h>
    4444#include <ui/menu.h>
     45#include <ui/menuentry.h>
    4546#include <ui/window.h>
    4647
     
    5152        /** Link to tbsmenu->entries */
    5253        link_t lentries;
     54        /** Menu entry */
     55        ui_menu_entry_t *mentry;
     56        /** Caption */
     57        char *caption;
     58        /** Command to run */
     59        char *cmd;
    5360} tbsmenu_entry_t;
    5461
     
    7986} tbsmenu_t;
    8087
     88/** Command split into individual parts */
     89typedef struct {
     90        /** Buffer holding broken down command */
     91        char *buf;
     92        /** NULL-terminated array of string pointers */
     93        char **argv;
     94} tbsmenu_cmd_t;
     95
    8196#endif
    8297
Note: See TracChangeset for help on using the changeset viewer.