commit 2f8ed99c11279ab932dbda6db0647f70c3280b7a
Author: Alex Mayfield <alexmax2742@gmail.com>
AuthorDate: Fri Feb 10 18:40:34 2017 -0500
Commit: Alex Mayfield <alexmax2742@gmail.com>
CommitDate: Fri Feb 10 18:41:22 2017 -0500
Normalize header comments and file extensions
---
midiproc/{main.cpp => main.c} | 21 ++++++---------------
src/{i_midirpc.cpp => i_midirpc.c} | 21 ++++++---------------
src/i_midirpc.h | 24 ++++++------------------
3 files changed, 18 insertions(+), 48 deletions(-)
diff --git a/midiproc/main.cpp b/midiproc/main.c
similarity index 89%
rename from midiproc/main.cpp
rename to midiproc/main.c
index d6983af2..180327fa 100644
--- a/midiproc/main.cpp
+++ b/midiproc/main.c
@@ -1,36 +1,27 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
// Copyright(C) 2012 James Haley
//
-// This program is free software; you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation; either version 2 of the License, or
-// (at your option) any later version.
-//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-//
-//-----------------------------------------------------------------------------
//
// DESCRIPTION:
//
// Win32/SDL_mixer MIDI RPC Server
//
-// Uses RPC to communicate with Eternity. This allows this separate process to
+// Uses RPC 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.
//
// Seriously, how did they screw up something so fundamental?
//
-//-----------------------------------------------------------------------------
#include <windows.h>
#include <stdlib.h>
diff --git a/src/i_midirpc.cpp b/src/i_midirpc.c
similarity index 90%
rename from src/i_midirpc.cpp
rename to src/i_midirpc.c
index f80a6f75..1cba2746 100644
--- a/src/i_midirpc.cpp
+++ b/src/i_midirpc.c
@@ -1,28 +1,19 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright (C) 2013 James Haley et al.
+// Copyright(C) 2013 James Haley et al.
//
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see http://www.gnu.org/licenses/
-//
-//----------------------------------------------------------------------------
-//
// DESCRIPTION:
+// Client Interface to RPC Midi Server
//
-// Client Interface to RPC Midi Server
-//
-//-----------------------------------------------------------------------------
#ifdef EE_FEATURE_MIDIRPC
diff --git a/src/i_midirpc.h b/src/i_midirpc.h
index 34acb335..201eb283 100644
--- a/src/i_midirpc.h
+++ b/src/i_midirpc.h
@@ -1,31 +1,19 @@
-// Emacs style mode select -*- C++ -*-
-//-----------------------------------------------------------------------------
//
-// Copyright (C) 2013 James Haley et al.
+// Copyright(C) 2013 James Haley et al.
//
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see http://www.gnu.org/licenses/
-//
-// Additional terms and conditions compatible with the GPLv3 apply. See the
-// file COPYING-EE for details.
-//
-//----------------------------------------------------------------------------
-//
// DESCRIPTION:
+// Client Interface to RPC Midi Server
//
-// Client Interface to RPC Midi Server
-//
-//-----------------------------------------------------------------------------
#ifndef I_MIDIRPC_H__
#define I_MIDIRPC_H__