|
Odamex
Setting the Standard in Multiplayer Doom
|
00001 // Emacs style mode select -*- C++ -*- 00002 //----------------------------------------------------------------------------- 00003 // 00004 // $Id: mus2midi.h 1788 2010-08-24 04:42:57Z russellrice $ 00005 // 00006 // Copyright (C) 1993-1996 by id Software, Inc. 00007 // Copyright (C) 2005 by Simon Howard 00008 // Copyright (C) 2006 by Ben Ryves 2006 00009 // Copyright (C) 2006-2010 by The Odamex Team. 00010 // 00011 // This program is free software; you can redistribute it and/or 00012 // modify it under the terms of the GNU General Public License 00013 // as published by the Free Software Foundation; either version 2 00014 // of the License, or (at your option) any later version. 00015 // 00016 // This program is distributed in the hope that it will be useful, 00017 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00019 // GNU General Public License for more details. 00020 // 00021 // You should have received a copy of the GNU General Public License 00022 // along with this program; if not, write to the Free Software 00023 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 00024 // 02111-1307, USA. 00025 // 00026 // DESCRIPTION: 00027 // mus2mid.h - http://benryves.com - benryves@benryves.com 00028 // Use to convert a MUS file into a single track, type 0 MIDI file. 00029 // 00030 // [Russell] - Minor modifications to make it compile 00031 // 00032 //----------------------------------------------------------------------------- 00033 00034 00035 #ifndef MUS2MID_H 00036 #define MUS2MID_H 00037 00038 #include "doomtype.h" 00039 #include "m_memio.h" 00040 00041 QWORD mus2mid(MEMFILE *musinput, MEMFILE *midioutput); 00042 00043 #endif /* #ifndef MUS2MID_H */ 00044 00045