foxygit / doom Log in
commit 044b3e839ac50ec92e5a72616a30f703e00df5d7
Author:     Alex Mayfield <alexmax2742@gmail.com>
AuthorDate: Wed Mar 8 23:16:00 2017 -0500
Commit:     Alex Mayfield <alexmax2742@gmail.com>
CommitDate: Wed Mar 8 23:16:00 2017 -0500

    Define and comment fixes
---
 midiproc/main.c  | 7 +++++--
 src/i_midipipe.c | 2 +-
 src/i_midipipe.h | 6 +++---
 3 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/midiproc/main.c b/midiproc/main.c
index 436f06df..1908bc75 100644
--- a/midiproc/main.c
+++ b/midiproc/main.c
@@ -14,9 +14,9 @@
 //
 // DESCRIPTION:
 //
-// Win32/SDL_mixer MIDI RPC Server
+// Win32/SDL_mixer MIDI Server
 //
-// Uses RPC to communicate with Doom. This allows this separate process to
+// Uses pipes to communicate with Doom. This allows this separate process to
 // have its own independent volume control even under Windows Vista and up's
 // broken, stupid, completely useless mixer model that can't assign separate
 // volumes to different devices for the same process.
@@ -267,6 +267,9 @@ fail:
     return false;
 }

+//
+// The main pipe "listening" loop
+//
 boolean ListenForever()
 {
     BOOL wok = FALSE;
diff --git a/src/i_midipipe.c b/src/i_midipipe.c
index 89b7307f..fdc61864 100644
--- a/src/i_midipipe.c
+++ b/src/i_midipipe.c
@@ -13,7 +13,7 @@
 // GNU General Public License for more details.
 //
 // DESCRIPTION:
-//     Client Interface to RPC Midi Server
+//     Client Interface to Midi Server
 //

 #if _WIN32
diff --git a/src/i_midipipe.h b/src/i_midipipe.h
index b64f2f24..2700d96d 100644
--- a/src/i_midipipe.h
+++ b/src/i_midipipe.h
@@ -13,11 +13,11 @@
 // GNU General Public License for more details.
 //
 // DESCRIPTION:
-//     Client Interface to RPC Midi Server
+//     Client Interface to Midi Server
 //

-#ifndef __I_MIDISOCKET__
-#define __I_MIDISOCKET__
+#ifndef __I_MIDIPIPE__
+#define __I_MIDIPIPE__

 #if _WIN32