commit 4328e3dc108fd1e6ab4d1d08dcca9004ad09d344
Author: Alex Mayfield <alexmax2742@gmail.com>
AuthorDate: Sat Feb 18 16:44:16 2017 -0500
Commit: Alex Mayfield <alexmax2742@gmail.com>
CommitDate: Sat Feb 18 16:44:16 2017 -0500
I_MidiSocket -> I_MidiPipe
Not really sure how this managed to compile beforehand...
---
src/i_midipipe.h | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/src/i_midipipe.h b/src/i_midipipe.h
index 70ff9314..a4e40620 100644
--- a/src/i_midipipe.h
+++ b/src/i_midipipe.h
@@ -23,17 +23,17 @@
#include "doomtype.h"
-boolean I_MidiSocketInitServer();
-boolean I_MidiSocketInitClient();
-void I_MidiSocketClientShutDown();
-boolean I_MidiSocketReady();
-
-boolean I_MidiSocketRegisterSong(const char *filename);
-boolean I_MidiSocketPlaySong(boolean looping);
-boolean I_MidiSocketStopSong();
-boolean I_MidiSocketSetVolume(int volume);
-boolean I_MidiSocketPauseSong();
-boolean I_MidiSocketResumeSong();
+boolean I_MidiPipeInitServer();
+boolean I_MidiPipeInitClient();
+void I_MidiPipeClientShutDown();
+boolean I_MidiPipeReady();
+
+boolean I_MidiPipeRegisterSong(const char *filename);
+boolean I_MidiPipePlaySong(boolean looping);
+boolean I_MidiPipeStopSong();
+boolean I_MidiPipeSetVolume(int volume);
+boolean I_MidiPipePauseSong();
+boolean I_MidiPipeResumeSong();
#endif