mpd/src/ls.hxx

32 lines
697 B
C++
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
2013-01-03 17:34:51 +01:00
#ifndef MPD_LS_HXX
#define MPD_LS_HXX
#include <stdio.h>
class Response;
2009-01-04 17:46:42 +01:00
/**
* Checks whether the scheme of the specified URI is supported by MPD.
* It is not allowed to pass an URI without a scheme, check with
* uri_has_scheme() first.
*/
2021-10-13 11:28:04 +02:00
[[gnu::pure]]
bool
uri_supported_scheme(const char *url) noexcept;
2009-01-04 17:46:42 +01:00
/**
* Send a list of supported URI schemes to the client. This is the
* response to the "urlhandlers" command.
*/
void print_supported_uri_schemes(Response &r);
/**
* Send a list of supported URI schemes to a file pointer.
*/
void print_supported_uri_schemes_to_fp(FILE *fp);
#endif