X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Futils.h;h=010cfee5cc02a4017c05c3f7998dd9d828295ff2;hb=HEAD;hp=fe913afcef7253307f9bd79246dee9ee5a18441e;hpb=0b3bcb6c7f1bb4a633896b8a9936e498570ef8e1;p=ncmpc.git diff --git a/src/utils.h b/src/utils.h index fe913af..010cfee 100644 --- a/src/utils.h +++ b/src/utils.h @@ -1,22 +1,30 @@ +/* ncmpc (Ncurses MPD Client) + * (c) 2004-2017 The Music Player Daemon Project + * Project homepage: http://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 UTILS_H #define UTILS_H +#include /* functions for lists containing strings */ GList *string_list_free(GList *string_list); 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) -#define GCMP_TYPE_FILE (0x01 << 1) -#define GCMP_TYPE_PLAYLIST (0x01 << 2) -#define GCMP_TYPE_RFILE (GCMP_TYPE_DIR | GCMP_TYPE_FILE) -#define GCMP_TYPE_RPLAYLIST (GCMP_TYPE_DIR | GCMP_TYPE_PLAYLIST) - -GList *gcmp_list_from_path(mpdclient_t *c, - const gchar *path, - GList *list, - gint types); - #endif