Removed the config.h thing from the .h's in the source dir.

So we should be all set now :)

Kent
--
mein@cs.umn.edu
This commit is contained in:
Kent Mein 2002-12-27 13:11:01 +00:00
parent f78de74b20
commit f1c4f705a1
554 changed files with 3 additions and 2297 deletions

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

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

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

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

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

@ -41,10 +41,6 @@
#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.

@ -34,10 +34,6 @@
* ***** 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

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

@ -40,10 +40,6 @@
#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
*/

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

@ -34,10 +34,6 @@
* ***** 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

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

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

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

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

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

@ -41,10 +41,6 @@
#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;

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

@ -56,10 +56,6 @@
#include <stdio.h> /* for FILE */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
typedef struct _AviChunk {
int fcc;
int size;

@ -34,10 +34,6 @@
#include <stdio.h> /* for FILE */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "MEM_guardedalloc.h"
unsigned int GET_FCC (FILE *fp);

@ -30,10 +30,6 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
void *avi_converter_from_avi_rgb (AviMovie *movie, int stream, unsigned char *buffer, int *size);
void *avi_converter_to_avi_rgb (AviMovie *movie, int stream, unsigned char *buffer, int *size);

@ -40,10 +40,6 @@
#include <stdio.h>
#include "AVI_avi.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define AVI_RAW 0
#define AVI_CHUNK 1
#define AVI_LIST 2

@ -30,10 +30,6 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
void *avi_converter_from_mjpeg (AviMovie *movie, int stream, unsigned char *buffer, int *size);
void *avi_converter_to_mjpeg (AviMovie *movie, int stream, unsigned char *buffer, int *size);

@ -30,10 +30,6 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
void *avi_converter_from_rgb32 (AviMovie *movie, int stream, unsigned char *buffer, int *size);
void *avi_converter_to_rgb32 (AviMovie *movie, int stream, unsigned char *buffer, int *size);

@ -40,10 +40,6 @@
#include "DNA_listBase.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/**
* The following structures are defined in DNA_action_types.h
*/

@ -34,10 +34,6 @@
#ifndef BKE_ARMATURE_H
#define BKE_ARMATURE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Bone;
struct Main;
struct bArmature;

@ -37,10 +37,6 @@
#ifndef BKE_BAD_LEVEL_CALLS_H
#define BKE_BAD_LEVEL_CALLS_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* readfile.c */
struct PluginSeq;
void open_plugin_seq(struct PluginSeq *pis, char *seqname);

@ -36,11 +36,6 @@
#ifndef BKE_BLENDER_H
#define BKE_BLENDER_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif

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

@ -36,10 +36,6 @@
#ifndef BKE_BMFONT_TYPES_H
#define BKE_BMFONT_TYPES_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define is_power_of_two(N) ((N ^ (N - 1)) == (2 * N - 1))
/*
Moved to IMB_imbuf_types.h where it will live close to the ImBuf type.

@ -32,10 +32,6 @@
#ifndef BKE_BOOLEANOPS_H
#define BKE_BOOLEANOPS_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Mesh;
struct Object;
struct Base;

@ -34,10 +34,6 @@
#include "CSG_BooleanOps.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/**
* Internal mesh structure.
* Safe to copy by value... hopefully.

@ -33,10 +33,6 @@
#ifndef BKE_CONSTRAINT_H
#define BKE_CONSTRAINT_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct bConstraint;
struct Object;
struct ListBase;

@ -34,10 +34,6 @@
#ifndef BKE_CURVE_H
#define BKE_CURVE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Curve;
struct ListBase;
struct Object;

@ -38,10 +38,6 @@
#ifndef BKE_DEFORM_H
#define BKE_DEFORM_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Object;
struct ListBase;
struct bDeformGroup;

@ -35,10 +35,6 @@
#ifndef BKE_DISPLIST_H
#define BKE_DISPLIST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define DL_POLY 0
#define DL_SEGM 1
#define DL_SURF 2

@ -34,10 +34,6 @@
#ifndef BKE_EFFECT_H
#define BKE_EFFECT_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Effect;
struct ListBase;
struct Object;

@ -34,10 +34,6 @@
#ifndef BKE_ENDIAN_H
#define BKE_ENDIAN_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define BKE_ENDIANNESS(a) { \
union { \
long l; \

@ -34,10 +34,6 @@
#ifndef BKE_EXOTIC_H
#define BKE_EXOTIC_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Mesh;
void mcol_to_rgba(unsigned int col, float *r, float *g, float *b, float *a);

@ -34,10 +34,6 @@
#ifndef BKE_VFONT_H
#define BKE_VFONT_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct VFont;
struct Object;
struct Curve;

@ -38,10 +38,6 @@
#ifndef BKE_GLOBAL_H
#define BKE_GLOBAL_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "DNA_listBase.h"
#ifdef __cplusplus

@ -34,10 +34,6 @@
#ifndef BKE_GROUP_H
#define BKE_GROUP_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Group;
struct GroupKey;
struct GroupObject;

@ -34,10 +34,6 @@
#ifndef BKE_IKA_H
#define BKE_IKA_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Ika;
struct Limb;
struct Object;

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

@ -34,10 +34,6 @@
#ifndef BKE_IPO_H
#define BKE_IPO_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
typedef struct CfraElem {
struct CfraElem *next, *prev;
float cfra;

@ -34,10 +34,6 @@
#ifndef BKE_KEY_H
#define BKE_KEY_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Key;
struct KeyBlock;
struct ID;

@ -34,10 +34,6 @@
#ifndef BKE_LATTICE_H
#define BKE_LATTICE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Lattice;
struct Object;
struct BPoint;

@ -36,10 +36,6 @@
#ifndef BKE_LIBRARY_TYPES_H
#define BKE_LIBRARY_TYPES_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct ListBase;
struct ID;
struct Main;

@ -41,10 +41,6 @@
#ifndef BKE_MAIN_H
#define BKE_MAIN_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "DNA_listBase.h"
struct Library;

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

@ -34,10 +34,6 @@
#ifndef BKE_MBALL_H
#define BKE_MBALL_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct MetaBall;
struct Object;
struct MetaElem;

@ -34,10 +34,6 @@
#ifndef BKE_MESH_H
#define BKE_MESH_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* texflag */
#define AUTOSPACE 1

@ -33,10 +33,6 @@
#ifndef BKE_NLA_H
#define BKE_NLA_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct bActionStrip;
struct ListBase;

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

@ -34,11 +34,6 @@
#ifndef BKE_OSA_TYPES_H
#define BKE_OSA_TYPES_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* typedef struct Osa */
typedef struct RE_Osa
{

@ -34,10 +34,6 @@
#ifndef BKE_PACKEDFILE_H
#define BKE_PACKEDFILE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct PackedFile;
struct VFont;
struct bSample;

@ -37,10 +37,6 @@
#ifndef BKE_PLUGIN_TYPES_H
#define BKE_PLUGIN_TYPES_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct ImBuf;
typedef int (*TexDoit)(int, void*, float*, float*, float*);

@ -34,10 +34,6 @@
#ifndef BKE_PROPERTY_H
#define BKE_PROPERTY_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct bProperty;
struct ListBase;
struct Object;

@ -34,10 +34,6 @@
#ifndef BKE_SCA_H
#define BKE_SCA_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Text;
struct bSensor;
struct Object;

@ -34,10 +34,6 @@
#ifndef BKE_SCENE_H
#define BKE_SCENE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Scene;
struct Object;
struct Base;

@ -34,12 +34,7 @@
#ifndef BKE_SCREEN_H
#define BKE_SCREEN_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
void free_screen(struct bScreen *sc);
#endif

@ -34,10 +34,6 @@
#ifndef BKE_SOUND_H
#define BKE_SOUND_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct PackedFile;
struct bSound;
struct bSample;

@ -31,10 +31,6 @@
#ifndef BKE_SUBSURF_H
#define BKE_SUBSURF_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Mesh;
struct Object;
struct Displist;

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

@ -34,10 +34,6 @@
#ifndef BKE_TEXTURE_H
#define BKE_TEXTURE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Tex;
struct MTex;
struct PluginTex;

@ -36,10 +36,6 @@
#ifndef BKE_UTILDEFINES_H
#define BKE_UTILDEFINES_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifndef FALSE
#define FALSE 0
#endif

@ -34,10 +34,6 @@
#ifndef BKE_WORLD_H
#define BKE_WORLD_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct World;
void free_world(struct World *sc);

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

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

@ -65,10 +65,6 @@
#ifndef BLI_BLENLIB_H
#define BLI_BLENLIB_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "DNA_listBase.h" /* braindamage for the masses... needed
because fillvlakbase and fillvertbase are
used outside */

@ -41,10 +41,6 @@
#ifndef BLI_DYNSTR_H
#define BLI_DYNSTR_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct DynStr;
/** The abstract DynStr type */

@ -38,10 +38,6 @@
#ifndef BLI_EDITVERT_H
#define BLI_EDITVERT_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
typedef struct EditVert
{
struct EditVert *next, *prev, *vn;

@ -35,10 +35,6 @@
#ifndef BLI_GHASH_H
#define BLI_GHASH_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct GHash;
typedef struct GHash GHash;

@ -36,10 +36,6 @@
#ifndef BLI_GSQUEUE_H
#define BLI_GSQUEUE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
typedef struct _GSQueue GSQueue;
/**

@ -36,10 +36,6 @@
#ifndef BLI_LINKLIST_H
#define BLI_LINKLIST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct MemArena;
typedef void (*LinkNodeFreeFP)(void *link);

@ -40,10 +40,6 @@
#ifndef BLI_MEMARENA_H
#define BLI_MEMARENA_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* A reasonable standard buffer size, big
* enough to not cause much internal fragmentation,
* small enough not to waste resources

@ -36,10 +36,6 @@
#ifndef BLI_RAND_H
#define BLI_RAND_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/** Seed the random number generator */
void BLI_srand (unsigned int seed);

@ -38,10 +38,6 @@
#include <sys/stat.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define HDRSIZE 512
#define NAMSIZE 200

@ -35,10 +35,6 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifndef BLI_VFONTDATA_H
#define BLI_VFONTDATA_H

@ -33,10 +33,6 @@
*/
#pragma warning(once: 4761 4305 4244 4018)
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define WIN32_LEAN_AND_MEAN
#include <windows.h>

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

@ -35,10 +35,6 @@
#ifndef VECTOROPS_H
#define VECTOROPS_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* ------------------------------------------------------------------------- */
void MTC_diff3Int(int v1[3], int v2[3], int v3[3]);

@ -32,10 +32,6 @@
#ifndef __PIL_DYNLIB_H__
#define __PIL_DYNLIB_H__
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
typedef struct PILdynlib PILdynlib;
PILdynlib*

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

@ -37,10 +37,6 @@
#ifndef BLI_CALLBACKS_H
#define BLI_CALLBACKS_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
// This is blenlib internal only
void callLocalErrorCallBack(char* msg);
int callLocalInterruptCallBack(void);

@ -39,10 +39,6 @@
#ifndef BLI_FILEOPS_H
#define BLI_FILEOPS_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
char *first_slash(char *string);
/* only for the sane unix world: direct calls to system functions :( */

@ -37,9 +37,5 @@
#ifndef BLI_SCANFILL_H
#define BLI_SCANFILL_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#endif

@ -31,10 +31,6 @@
#ifndef BLI_STORAGE_H
#define BLI_STORAGE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "BLI_storage_types.h"
void BLI_adddirstrings(void);

@ -36,17 +36,10 @@
#ifndef BLI_UTIL_H
#define BLI_UTIL_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define mallocstructN(x,y,name) (x*)MEM_mallocN((y)* sizeof(x),name)
#define callocstructN(x,y,name) (x*)MEM_callocN((y)* sizeof(x),name)
struct ListBase;
/* void addlisttolist(struct ListBase *list1, struct ListBase *list2); */
#endif

@ -34,10 +34,6 @@
#ifndef BLO_GENFILE_H
#define BLO_GENFILE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
int BLO_findstruct_offset(char *structname, char *member);// used by py_main.c
#endif

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

@ -32,10 +32,6 @@
#ifndef BLO_SOUNDFILE_H
#define BLO_SOUNDFILE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "DNA_sound_types.h"
#include "DNA_packedFile_types.h"

@ -34,10 +34,6 @@
#ifndef BLO_WRITEFILE_H
#define BLO_WRITEFILE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
int BLO_write_file(char *dir, int write_flags, char **error_r);
void BLO_write_runtime(char *file, char *exename);

@ -34,10 +34,6 @@
#ifndef GENFILE_H
#define GENFILE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct SDNA;
int dna_findstruct_nr(struct SDNA *sdna, char *str);

@ -33,10 +33,6 @@
#ifndef READFILE_H
#define READFILE_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct OldNewMap;
typedef struct FileData {

@ -31,10 +31,6 @@
#ifndef FLOATPATCH_H
#define FLOATPATCH_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* floating point libs differ at systems... with these defines it comilies at all! */
#ifdef MIPS1

@ -34,10 +34,6 @@
#include <sys/types.h>
#include "util.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#define IB_rect (1 << 0)
#define IB_planes (1 << 1)
#define IB_cmap (1 << 2)

@ -31,10 +31,6 @@
#ifndef PLUGIN_H
#define PLUGIN_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "iff.h"
#include "util.h"
#include "floatpatch.h"

@ -31,10 +31,6 @@
#ifndef UTIL_H
#define UTIL_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <sys/types.h>
#include <stdlib.h>
#include <string.h>

@ -30,10 +30,6 @@
* ***** END GPL/BL DUAL LICENSE BLOCK *****
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
struct Text;
struct ID;
struct ScriptLink;

Some files were not shown because too many files have changed in this diff Show More