2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2022-07-14 17:58:12 +02:00
|
|
|
* Copyright 2003-2022 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2004-02-24 00:41:20 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
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
|