myMPD
Internal API documentation
Loading...
Searching...
No Matches
config.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-3.0-or-later
3 myMPD (c) 2018-2026 Juergen Mang <mail@jcgames.de>
4 https://github.com/jcorporation/mympd
5*/
6
10
11#ifndef MYMPD_CONFIG_H
12#define MYMPD_CONFIG_H
13
15
16#include <stdbool.h>
17
18void mympd_config_defaults_initial(struct t_config *config);
19bool mympd_config_read(struct t_config *config);
20void mympd_config_free(struct t_config *config);
22
23#endif
void mympd_config_free(struct t_config *config)
Definition config.c:174
bool mympd_config_read(struct t_config *config)
Definition config.c:397
void mympd_config_dump_default(void)
Definition config.c:493
void mympd_config_defaults_initial(struct t_config *config)
Definition config.c:200
Central myMPD configuration definitions.
Definition config_def.h:22