2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2013-01-03 17:34:51 +01:00
|
|
|
#ifndef MPD_LS_HXX
|
|
|
|
#define MPD_LS_HXX
|
2004-02-24 00:41:20 +01:00
|
|
|
|
2009-03-03 17:01:42 +01:00
|
|
|
#include <stdio.h>
|
2008-12-16 21:18:33 +01:00
|
|
|
|
2015-08-06 22:10:25 +02:00
|
|
|
class Response;
|
2008-09-07 14:02:40 +02:00
|
|
|
|
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]]
|
2017-05-08 14:44:49 +02:00
|
|
|
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.
|
|
|
|
*/
|
2015-08-06 22:10:25 +02:00
|
|
|
void print_supported_uri_schemes(Response &r);
|
2004-05-13 20:46:38 +02:00
|
|
|
|
2009-03-03 17:01:42 +01:00
|
|
|
/**
|
|
|
|
* Send a list of supported URI schemes to a file pointer.
|
|
|
|
*/
|
|
|
|
void print_supported_uri_schemes_to_fp(FILE *fp);
|
|
|
|
|
2004-02-24 00:41:20 +01:00
|
|
|
#endif
|