myMPD
Internal API documentation
Loading...
Searching...
No Matches
websocket.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
12#ifndef MYMPD_WEB_SERVER_WEBSOCKET_H
13#define MYMPD_WEB_SERVER_WEBSOCKET_H
14
15#include "dist/mongoose/mongoose.h"
16#include "src/lib/api.h"
17
18void websocket_send_notify(struct mg_mgr *mgr, struct t_work_response *response);
19void websocket_send_notify_client(struct mg_mgr *mgr, struct t_work_response *response);
20
21#endif
myMPD API handling
Definition api.h:326
void websocket_send_notify_client(struct mg_mgr *mgr, struct t_work_response *response)
Definition websocket.c:55
void websocket_send_notify(struct mg_mgr *mgr, struct t_work_response *response)
Definition websocket.c:22