mirror of
https://github.com/deadw00d/AROS.git
synced 2025-12-09 07:34:27 +00:00
58 lines
1.2 KiB
C
58 lines
1.2 KiB
C
/*
|
|
Copyright (C) 2002-2007, The AROS Development Team.
|
|
All rights reserved.
|
|
|
|
*/
|
|
|
|
#ifndef COOLIMAGES_INTERN_H
|
|
#define COOLIMAGES_INTERN_H
|
|
|
|
#ifndef EXEC_TYPES_H
|
|
# include <exec/types.h>
|
|
#endif
|
|
#ifndef EXEC_LIBRARIES_H
|
|
# include <exec/libraries.h>
|
|
#endif
|
|
#ifndef EXEC_MEMORY_H
|
|
# include <exec/memory.h>
|
|
#endif
|
|
#ifndef INTUITION_CLASSES_H
|
|
# include <intuition/classes.h>
|
|
#endif
|
|
#ifndef INTUITION_INTUITIONBASE_H
|
|
# include <intuition/intuitionbase.h>
|
|
#endif
|
|
#ifndef GRAPHICS_GFXBASE_H
|
|
# include <graphics/gfxbase.h>
|
|
#endif
|
|
#ifndef CYBERGRAPHX_CYBERGRAPHICS_H
|
|
# include <cybergraphx/cybergraphics.h>
|
|
#endif
|
|
#ifndef LINKLIBS_COOLIMAGES_H
|
|
# include <coolimages.h>
|
|
#endif
|
|
#ifndef LIBRARIES_COOLIMAGES_H
|
|
# include <libraries/coolimages.h>
|
|
#endif
|
|
#ifndef UTILITY_UTILITY_H
|
|
# include <utility/utility.h>
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************************/
|
|
|
|
struct CoolImagesBase_intern
|
|
{
|
|
struct Library library;
|
|
};
|
|
|
|
/****************************************************************************************/
|
|
|
|
#undef CIB
|
|
#define CIB(b) ((struct CoolImagesBase_intern *)(b))
|
|
|
|
/****************************************************************************************/
|
|
|
|
#endif /* COOLIMAGES_INTERN_H */
|