aboutsummaryrefslogtreecommitdiffstats
path: root/src/IOThread.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/IOThread.hxx')
-rw-r--r--src/IOThread.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/IOThread.hxx b/src/IOThread.hxx
index f6f5dffec..c7edd67b4 100644
--- a/src/IOThread.hxx
+++ b/src/IOThread.hxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2014 The Music Player Daemon Project
+ * Copyright (C) 2003-2015 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -25,7 +25,7 @@
class EventLoop;
void
-io_thread_init(void);
+io_thread_init();
void
io_thread_start();
@@ -36,7 +36,7 @@ io_thread_start();
* only.
*/
void
-io_thread_run(void);
+io_thread_run();
/**
* Ask the I/O thread to quit, but does not wait for it. Usually, you
@@ -44,10 +44,10 @@ io_thread_run(void);
* includes this.
*/
void
-io_thread_quit(void);
+io_thread_quit();
void
-io_thread_deinit(void);
+io_thread_deinit();
gcc_const
EventLoop &
@@ -58,6 +58,6 @@ io_thread_get();
*/
gcc_pure
bool
-io_thread_inside(void);
+io_thread_inside();
#endif