Code

utils: move gcmp_list_from_path() to db_completion.c
[ncmpc.git] / src / utils.h
index 46f5ba51997ff7950b6e5ba434ba43a8f047dfc0..ecd68bbf6e4b4f35e34bf6220fa85ef3a0f9aeab 100644 (file)
 
 #include <glib.h>
 
-struct mpdclient;
-
 /* 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(struct mpdclient *c, const gchar *path,
-                   GList *list, gint types);
-
 void
 format_duration_short(char *buffer, size_t length, unsigned duration);