gui: Get rid of do_select()'s mode parameter and call it only once.
[paraslash.git] / audiod.h
index 4c3212228ba5ad75dac7241d10c47ebdb0478652..aa98001c3d34906775ce6cf7c135dfb22c060ac1 100644 (file)
--- a/audiod.h
+++ b/audiod.h
@@ -1,10 +1,10 @@
 /*
- * Copyright (C) 2006-2011 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 2006-2014 Andre Noll <maan@systemlinux.org>
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
 
-/** \file audiod.h symbols exported from audiod.c */
+/** \file audiod.h Symbols exported from audiod.c. */
 
 
 /** enum of audio formats supported by para_audiod */
@@ -68,12 +68,13 @@ extern int audiod_status;
 
 void __noreturn clean_exit(int status, const char *msg);
 int handle_connect(int accept_fd, fd_set *rfds);
-void audiod_status_dump(void);
+void audiod_status_dump(bool force);
 char *get_time_string(int slot_num);
 struct btr_node *audiod_get_btr_root(void);
 
 void stat_client_write_item(int item_num);
 void clear_and_dump_items(void);
+void close_stat_clients(void);
 
 /** iterate over all slots */
 #define FOR_EACH_SLOT(_slot) for (_slot = 0; _slot < MAX_STREAM_SLOTS; _slot++)