Did all of the .h's in source

(adding)
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

also the Makefile.in's were from previous patch adding
the system depend stuff to configure.ac

Kent
--
mein@cs.umn.edu
This commit is contained in:
2002-11-25 11:16:17 +00:00
parent 3f2f1571e5
commit b9a19f1ea7
555 changed files with 2210 additions and 29 deletions

View File

@@ -32,6 +32,10 @@
#ifndef SND_BLENDER_H
#define SND_BLENDER_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif

View File

@@ -39,6 +39,10 @@
#include "SND_Object.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class SND_CDObject : public SND_Object
{
private:

View File

@@ -34,6 +34,9 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#if defined (_WIN32)
#define USE_FMOD

View File

@@ -39,6 +39,10 @@
#include "SND_IAudioDevice.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class SND_DeviceManager
{
public :

View File

@@ -38,6 +38,9 @@
#include "SND_WaveSlot.h"
#include "MT_Matrix3x3.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class SND_IAudioDevice
{

View File

@@ -41,6 +41,10 @@
#include "MT_Matrix3x3.h"
#include "SoundDefines.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/**
* SND_Object is an interface class for soundobjects, listeners and other
* kinds of sound related thingies.

View File

@@ -34,6 +34,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef WIN32
#pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
#endif //WIN32

View File

@@ -39,6 +39,10 @@
#include "SND_Object.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class SND_SoundListener : public SND_Object
{

View File

@@ -40,6 +40,9 @@
#include "SND_Object.h"
#include "STR_String.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/**
* SND_SoundObject is a class for api independent sounddata storage conected to an actuator

View File

@@ -34,6 +34,10 @@
#include "SND_WaveSlot.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef __cplusplus
extern "C"
{

View File

@@ -34,6 +34,10 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef WIN32
#pragma warning (disable:4786) // get rid of stupid stl-visual compiler debug warning
#endif //WIN32

View File

@@ -39,6 +39,10 @@
#include "STR_String.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class SND_WaveSlot
{
STR_String m_samplename;

View File

@@ -37,6 +37,10 @@
#ifndef __SOUNDDEFINES_H
#define __SOUNDDEFINES_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* the types of devices */
enum
{

View File

@@ -34,6 +34,10 @@
#include "SND_AudioDevice.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class SND_DummyDevice : public SND_AudioDevice
{
public:

View File

@@ -36,6 +36,10 @@
#include "SND_AudioDevice.h"
#include "SoundDefines.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class SND_FmodDevice : public SND_AudioDevice
{
public:

View File

@@ -36,6 +36,9 @@
#include "SoundDefines.h"
#include "SND_IdObject.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class SND_AudioDevice : public SND_IAudioDevice
{

View File

@@ -41,6 +41,10 @@
#include "GEN_List.h"
#include "SoundDefines.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class SND_IdObject : public GEN_Link
{
SND_SoundObject* m_soundObject;

View File

@@ -35,6 +35,10 @@
#include "SND_AudioDevice.h"
#include "SoundDefines.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
class SND_OpenALDevice : public SND_AudioDevice
{
public: