libmpdclient  2.23
send.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: BSD-2-Clause
2 // Copyright The Music Player Daemon Project
3 
10 #ifndef LIBMPDCLIENT_SEND_H
11 #define LIBMPDCLIENT_SEND_H
12 
13 #include "compiler.h"
14 
15 #include <stdbool.h>
16 
17 struct mpd_connection;
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
31 mpd_sentinel
32 bool
33 mpd_send_command(struct mpd_connection *connection, const char *command, ...);
34 
35 #ifdef __cplusplus
36 }
37 #endif
38 
39 #endif
mpd_sentinel bool mpd_send_command(struct mpd_connection *connection, const char *command,...)