Ignore:
File:
1 edited

Legend:

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

    r84d29a2 re63e74a  
    11/*
    2  * Copyright (c) 2023 Jiri Svoboda
     2 * Copyright (c) 2024 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    4040#include <adt/list.h>
    4141#include <sif.h>
     42#include <stdbool.h>
    4243#include <types/tbarcfg/tbarcfg.h>
    4344
     
    6061        /** SIF node (persistent storage) */
    6162        sif_node_t *nentry;
     63        /** Is this a separator entry */
     64        bool separator;
    6265        /** Entry caption (with accelerator markup) */
    6366        char *caption;
    6467        /** Command to run */
    6568        char *cmd;
     69        /** Start in terminal */
     70        bool terminal;
    6671};
    6772
    6873extern errno_t smenu_entry_new(tbarcfg_t *, sif_node_t *, const char *,
    69     const char *);
     74    const char *, bool, smenu_entry_t **);
     75extern errno_t smenu_entry_sep_new(tbarcfg_t *, sif_node_t *, smenu_entry_t **);
    7076extern void smenu_entry_delete(smenu_entry_t *);
    7177
Note: See TracChangeset for help on using the changeset viewer.