aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-09 09:46:44 +0100
committerMax Kellermann <max@duempel.org>2013-01-09 13:02:13 +0100
commit3e5f09be0b38e0cc7e5eb8dd623c631b6ba45519 (patch)
treed9e73087daed58f22861582f7dc3c562c9482273
parente86e77ad67f883111d50f0886204ad96c8d0f90b (diff)
event_pipe: convert to C++
-rw-r--r--Makefile.am2
-rw-r--r--src/EventPipe.cxx (renamed from src/event_pipe.c)4
-rw-r--r--src/event_pipe.h10
3 files changed, 12 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index f9cac402..cff1ca66 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -247,7 +247,7 @@ src_mpd_SOURCES = \
src/io_thread.c src/io_thread.h \
src/Main.cxx src/Main.hxx \
src/Win32Main.cxx \
- src/event_pipe.c \
+ src/EventPipe.cxx \
src/daemon.c \
src/AudioCompress/compress.c \
src/MusicBuffer.cxx src/MusicBuffer.hxx \
diff --git a/src/event_pipe.c b/src/EventPipe.cxx
index d5c3b956..b2c80a3c 100644
--- a/src/event_pipe.c
+++ b/src/EventPipe.cxx
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 The Music Player Daemon Project
+ * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -80,7 +80,7 @@ main_notify_event(G_GNUC_UNUSED GIOChannel *source,
for (unsigned i = 0; i < PIPE_EVENT_MAX; ++i)
if (events[i])
/* invoke the event handler */
- event_pipe_invoke(i);
+ event_pipe_invoke(pipe_event(i));
return true;
}
diff --git a/src/event_pipe.h b/src/event_pipe.h
index 3749ccf7..7c136304 100644
--- a/src/event_pipe.h
+++ b/src/event_pipe.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2003-2011 The Music Player Daemon Project
+ * Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
@@ -50,6 +50,10 @@ enum pipe_event {
typedef void (*event_pipe_callback_t)(void);
+#ifdef __cplusplus
+extern "C" {
+#endif
+
void event_pipe_init(void);
void event_pipe_deinit(void);
@@ -66,4 +70,8 @@ void event_pipe_emit(enum pipe_event event);
*/
void event_pipe_emit_fast(enum pipe_event event);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* MAIN_NOTIFY_H */