SGI SI GLU library
[mesa.git] / src / glu / sgi / include / gluos.h
1 /*
2 ** gluos.h - operating system dependencies for GLU
3 **
4 ** $Header: /home/krh/git/sync/mesa-cvs-repo/Mesa/src/glu/sgi/include/gluos.h,v 1.1 2001/03/17 00:25:40 brianp Exp $
5 */
6
7 #ifdef _WIN32
8
9 #define WIN32_LEAN_AND_MEAN
10 #define NOGDI
11 #define NOIME
12 #include <windows.h>
13
14 /* Disable warnings */
15 #pragma warning(disable : 4101)
16 #pragma warning(disable : 4244)
17 #pragma warning(disable : 4761)
18
19 #else
20
21 /* Disable Microsoft-specific keywords */
22 #define GLAPIENTRY
23 #define WINGDIAPI
24
25 #endif