Code

workaround for libncurses macro warnings
[ncmpc.git] / src / utils.h
index a75ef8d7f0099d3f4171df950527676593f0c957..c3a6f1eed7d3de2e439fb4ae247338b9065abda8 100644 (file)
@@ -1,5 +1,5 @@
 /* ncmpc (Ncurses MPD Client)
- * (c) 2004-2009 The Music Player Daemon Project
+ * (c) 2004-2010 The Music Player Daemon Project
  * Project homepage: http://musicpd.org
  
  * This program is free software; you can redistribute it and/or modify
 #ifndef UTILS_H
 #define UTILS_H
 
-#include "mpdclient.h"
-
 #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);
@@ -36,9 +36,14 @@ GList *string_list_remove(GList *string_list, const gchar *str);
 #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);
+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);
+
+void
+format_duration_long(char *buffer, size_t length, unsigned long duration);
 
 #endif