2011-09-05 23:09:20 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPD_DB_PRINT_H
|
|
|
|
#define MPD_DB_PRINT_H
|
|
|
|
|
2011-09-13 21:36:51 +02:00
|
|
|
#include "gcc.h"
|
2012-08-02 18:20:46 +02:00
|
|
|
#include "gerror.h"
|
2011-09-13 21:36:51 +02:00
|
|
|
|
2011-09-10 19:24:30 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2011-09-05 23:09:20 +02:00
|
|
|
struct client;
|
|
|
|
struct locate_item_list;
|
2012-08-07 23:06:41 +02:00
|
|
|
struct DatabaseSelection;
|
2011-09-10 19:24:30 +02:00
|
|
|
struct db_visitor;
|
2011-09-05 23:09:20 +02:00
|
|
|
|
2012-08-07 23:10:34 +02:00
|
|
|
gcc_nonnull(1)
|
2011-09-13 21:24:22 +02:00
|
|
|
bool
|
2012-08-07 23:06:41 +02:00
|
|
|
db_selection_print(struct client *client, const DatabaseSelection &selection,
|
2011-09-13 21:24:22 +02:00
|
|
|
bool full, GError **error_r);
|
|
|
|
|
2011-09-13 21:36:51 +02:00
|
|
|
gcc_nonnull(1,2)
|
2011-09-10 19:24:30 +02:00
|
|
|
bool
|
|
|
|
printAllIn(struct client *client, const char *uri_utf8, GError **error_r);
|
2011-09-05 23:09:20 +02:00
|
|
|
|
2011-09-13 21:36:51 +02:00
|
|
|
gcc_nonnull(1,2)
|
2011-09-10 19:24:30 +02:00
|
|
|
bool
|
|
|
|
printInfoForAllIn(struct client *client, const char *uri_utf8,
|
|
|
|
GError **error_r);
|
2011-09-05 23:09:20 +02:00
|
|
|
|
2011-09-13 21:36:51 +02:00
|
|
|
gcc_nonnull(1,2,3)
|
2011-09-10 19:24:30 +02:00
|
|
|
bool
|
2011-09-05 23:09:20 +02:00
|
|
|
searchStatsForSongsIn(struct client *client, const char *name,
|
2011-09-10 19:24:30 +02:00
|
|
|
const struct locate_item_list *criteria,
|
|
|
|
GError **error_r);
|
2011-09-05 23:09:20 +02:00
|
|
|
|
2011-09-13 21:36:51 +02:00
|
|
|
gcc_nonnull(1,3)
|
2011-09-10 19:24:30 +02:00
|
|
|
bool
|
2011-09-05 23:09:20 +02:00
|
|
|
listAllUniqueTags(struct client *client, int type,
|
2011-09-10 19:24:30 +02:00
|
|
|
const struct locate_item_list *criteria,
|
|
|
|
GError **error_r);
|
2011-09-05 23:09:20 +02:00
|
|
|
|
|
|
|
#endif
|