12 lines
162 B
C
12 lines
162 B
C
#ifndef _GL_H_
|
|
#define _GL_H_
|
|
|
|
#ifdef _WIN32
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#endif
|
|
|
|
#include <GL/gl.h>
|
|
#include <GL/glu.h>
|
|
|
|
#endif /* _GL_H_ */
|