blob: 4a6632feede1ff45c63587e4cf58633bb4ed57e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef GTK_INCLUDES_H
#define GTK_INCLUDES_H
#include <gtkmm.h>
#include <gtkglmm.h>
#ifdef G_OS_WIN32
#define WIN32_LEAN_AND_MEAN 1
#include <windows.h>
#endif
#include <GL/gl.h>
#include <GL/glu.h>
#endif /* GTK_INCLUDES_H */
|