myMPD
Internal API documentation
Loading...
Searching...
No Matches
scripts.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_WEB_SERVER_SCRIPTS_H
12#define MYMPD_WEB_SERVER_SCRIPTS_H
13
14#include "dist/mongoose/mongoose.h"
15#include "src/lib/config_def.h"
16
17#include <stdbool.h>
18
19bool script_execute_http(struct mg_connection *nc, struct mg_http_message *hm, struct t_config *config);
20bool script_execute_bgimage(struct mg_connection *nc, struct mg_http_message *hm);
21
22#endif
Centtral myMPD configuration definitions.
Definition config_def.h:40
bool script_execute_bgimage(struct mg_connection *nc, struct mg_http_message *hm)
Definition scripts.c:76
bool script_execute_http(struct mg_connection *nc, struct mg_http_message *hm, struct t_config *config)
Definition scripts.c:36