mirror of
https://github.com/etlegacy/EasyGen.git
synced 2025-03-23 00:20:57 +00:00
28 lines
688 B
C
28 lines
688 B
C
|
//-----------------------------------------------------------------------------
|
||
|
//
|
||
|
// ImageLib Utility Toolkit Sources
|
||
|
// Copyright (C) 2000-2002 by Denton Woods
|
||
|
// Last modified: 04/20/2002 <--Y2K Compliant! =]
|
||
|
//
|
||
|
// Filename: src-ILUT/include/ilut_alleg.h (Don't want to conflict with allegro.h)
|
||
|
//
|
||
|
// Description:
|
||
|
//
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
// xxxxAllegro.h has to be included before il/il.h!xxx
|
||
|
//#ifdef ALLEGRO_VERSION // Check to make sure Allegro is present
|
||
|
#ifdef ILUT_USE_ALLEGRO
|
||
|
|
||
|
#ifndef ILUT_ALLEG_H
|
||
|
#define ILUT_ALLEG_H
|
||
|
|
||
|
#include <allegro.h>
|
||
|
|
||
|
|
||
|
|
||
|
#endif//ILUT_ALLEG_H
|
||
|
#endif//ILUT_USE_ALLEGRO
|
||
|
//#endif//ALLEGRO_VERSION
|
||
|
|