X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Futils.h;h=dc91bdbd765d957978dd2305e3b760ea9e499682;hb=61b081d64d4135698b56f63c931da60c64511e3c;hp=a7f81bf1a3f5bdc799319724ec345b418cc19e81;hpb=6d3b7cdd62d798521d73ac58d57bd67061d64ba5;p=ncmpc.git diff --git a/src/utils.h b/src/utils.h index a7f81bf..dc91bdb 100644 --- a/src/utils.h +++ b/src/utils.h @@ -1,11 +1,33 @@ +/* + * (c) 2004-2008 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + #ifndef UTILS_H #define UTILS_H +#include "mpdclient.h" + +#include /* functions for lists containing strings */ GList *string_list_free(GList *string_list); -GList *string_list_find(GList *string_list, gchar *str); -GList *string_list_remove(GList *string_list, gchar *str); +GList *string_list_find(GList *string_list, const gchar *str); +GList *string_list_remove(GList *string_list, const gchar *str); /* create a string list from path - used for completion */ #define GCMP_TYPE_DIR (0x01 << 0) @@ -15,7 +37,7 @@ GList *string_list_remove(GList *string_list, gchar *str); #define GCMP_TYPE_RPLAYLIST (GCMP_TYPE_DIR | GCMP_TYPE_PLAYLIST) GList *gcmp_list_from_path(mpdclient_t *c, - gchar *path, + const gchar *path, GList *list, gint types);