tInitial sound support - vaccinewars - be a doctor and try to vaccinate the world
git clone git://src.adamsgaard.dk/vaccinewars
Log
Files
Refs
README
LICENSE
---
commit 743c5fd14806bc413585322d0608723306545335
parent ec0940c899eac626c94d0729c87b26cb7ba3be30
Author: Ben Webb 
Date:   Sat,  4 May 2002 17:54:49 +0000

Initial sound support


Diffstat:
  A src/sound.c                         |      33 +++++++++++++++++++++++++++++++
  A src/sound.h                         |      33 +++++++++++++++++++++++++++++++

2 files changed, 66 insertions(+), 0 deletions(-)
---
diff --git a/src/sound.c b/src/sound.c
t@@ -0,0 +1,33 @@
+/************************************************************************
+ * sound.c        dopewars sound system                                 *
+ * Copyright (C)  1998-2002  Ben Webb                                   *
+ *                Email: ben@bellatrix.pcl.ox.ac.uk                     *
+ *                WWW: http://dopewars.sourceforge.net/                 *
+ *                                                                      *
+ * 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.                               *
+ ************************************************************************/
+
+#ifdef HAVE_CONFIG_H
+#include 
+#endif
+
+void SoundInit(void)
+{
+}
+
+void SoundClose(void)
+{
+}
diff --git a/src/sound.h b/src/sound.h
t@@ -0,0 +1,33 @@
+/************************************************************************
+ * sound.h        Header file for dopewars sound system                 *
+ * Copyright (C)  1998-2002  Ben Webb                                   *
+ *                Email: ben@bellatrix.pcl.ox.ac.uk                     *
+ *                WWW: http://dopewars.sourceforge.net/                 *
+ *                                                                      *
+ * 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.                               *
+ ************************************************************************/
+
+#ifndef __SOUND_H__
+#define __SOUND_H__
+
+#ifdef HAVE_CONFIG_H
+#include 
+#endif
+
+void SoundInit(void);
+void SoundClose(void);
+
+#endif /* __SOUND_H__ */