aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/glx/glheader.h
blob: 1c0ee2c9ea6d653094e78b599436d2d86176106a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __GLHEADER_H__
#define __GLHEADER_H__

#define STDC_HEADERS 1

#include <X11/Xwinsock.h>
#include <X11/Xwindows.h>
#include <assert.h>
#define strcasecmp _stricmp

#undef MINSHORT
#undef MAXSHORT

#define MINSHORT -32768
#define MAXSHORT 32767

#define PUBLIC

#define GL_GLEXT_PROTOTYPES

#define DRI_DRIVER_PATH "/usr/lib/dri"

#endif