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-2025 Juergen Mang <mail@jcgames.de>
4 https://github.com/jcorporation/mympd
5*/
6
11#ifndef MYMPD_CONFIG_H
12#define MYMPD_CONFIG_H
13
14#include "src/lib/config_def.h"
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:167
bool mympd_config_read(struct t_config *config)
Definition config.c:374
void mympd_config_dump_default(void)
Definition config.c:470
void mympd_config_defaults_initial(struct t_config *config)
Definition config.c:193
Central myMPD configuration definitions.
Definition config_def.h:22