mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
53dd513176
which included commits to RCS files with non-trunk default branches. git-svn-id: svn://svn.cc65.org/cc65/trunk@3 b7a2c559-68d2-44c3-8de9-860c34a00d81
70 lines
792 B
C
70 lines
792 B
C
/*
|
|
Supreme GEOS header file
|
|
includes all other headers
|
|
|
|
Maciej 'YTM/Alliance' Witkowiak, 27.10.1999
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GEOS_H
|
|
#define _GEOS_H
|
|
|
|
|
|
|
|
#ifndef _GCONST_H
|
|
#include <geos/gconst.h>
|
|
#endif
|
|
|
|
#ifndef _GSTRUCT_H
|
|
#include <geos/gstruct.h>
|
|
#endif
|
|
|
|
#ifndef _GSYM_H
|
|
#include <geos/gsym.h>
|
|
#endif
|
|
|
|
#ifndef _GDISK_H
|
|
#include <geos/gdisk.h>
|
|
#endif
|
|
|
|
#ifndef _GFILE_H
|
|
#include <geos/gfile.h>
|
|
#endif
|
|
|
|
#ifndef _GPROCESS_H
|
|
#include <geos/gprocess.h>
|
|
#endif
|
|
|
|
#ifndef _GGRAPH_H
|
|
#include <geos/ggraph.h>
|
|
#endif
|
|
|
|
#ifndef _GMENU_H
|
|
#include <geos/gmenu.h>
|
|
#endif
|
|
|
|
#ifndef _GSPRITE_H
|
|
#include <geos/gsprite.h>
|
|
#endif
|
|
|
|
#ifndef _GMEMORY_H
|
|
#include <geos/gmemory.h>
|
|
#endif
|
|
|
|
#ifndef _GSYS_H
|
|
#include <geos/gsys.h>
|
|
#endif
|
|
|
|
#ifndef _GDLGBOX_H
|
|
#include <geos/gdlgbox.h>
|
|
#endif
|
|
|
|
|
|
|
|
/* End of geos.h */
|
|
#endif
|
|
|
|
|
|
|