00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef FL_glu_H
00027 # define FL_glu_H
00028
00029 # include "Enumerations.H"
00030 # ifdef WIN32
00031 # include <windows.h>
00032 # endif
00033 # ifndef APIENTRY
00034 # if defined(__CYGWIN__)
00035 # define APIENTRY __attribute__ ((__stdcall__))
00036 # else
00037 # define APIENTRY
00038 # endif
00039 # endif
00040
00041 # ifdef __APPLE__
00042 # include <OpenGL/glu.h>
00043 # else
00044 # include <GL/glu.h>
00045 # endif
00046
00047 #endif // !FL_glu_H
00048
00049
00050
00051