Changeset 806d761 in mainline for uspace/lib/tbarcfg/include/tbarcfg/tbarcfg.h
- Timestamp:
- 2024-02-07T23:44:59Z (12 months ago)
- Branches:
- master
- Children:
- 242e3c3
- Parents:
- 74cb6610
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/tbarcfg/include/tbarcfg/tbarcfg.h
r74cb6610 r806d761 1 1 /* 2 * Copyright (c) 202 3Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 39 39 #include <errno.h> 40 40 #include <sif.h> 41 #include <stdbool.h> 41 42 #include <types/tbarcfg/tbarcfg.h> 42 43 … … 48 49 extern const char *smenu_entry_get_caption(smenu_entry_t *); 49 50 extern const char *smenu_entry_get_cmd(smenu_entry_t *); 51 extern bool smenu_entry_get_terminal(smenu_entry_t *); 50 52 extern errno_t smenu_entry_set_caption(smenu_entry_t *, const char *); 51 53 extern errno_t smenu_entry_set_cmd(smenu_entry_t *, const char *); 54 extern void smenu_entry_set_terminal(smenu_entry_t *, bool); 52 55 extern errno_t smenu_entry_save(smenu_entry_t *); 53 56 extern errno_t smenu_entry_create(tbarcfg_t *, const char *, const char *, 54 smenu_entry_t **);57 bool, smenu_entry_t **); 55 58 extern errno_t smenu_entry_destroy(smenu_entry_t *); 56 59
Note:
See TracChangeset
for help on using the changeset viewer.