mesa: WinCE fixes
[mesa.git] / include / GLES2 / gl2platform.h
1 #ifndef __gl2platform_h_
2 #define __gl2platform_h_
3
4 /* $Id: gl2platform.h 4532 2007-11-26 11:12:44Z markc $ */
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 /*
11 ** License Applicability. Except to the extent portions of this file are
12 ** made subject to an alternative license as permitted in the SGI Free
13 ** Software License B, Version 1.0 (the "License"), the contents of this
14 ** file are subject only to the provisions of the License. You may not use
15 ** this file except in compliance with the License. You may obtain a copy
16 ** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
17 ** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
18 **
19 ** http://oss.sgi.com/projects/FreeB
20 **
21 ** Note that, as provided in the License, the Software is distributed on an
22 ** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
23 ** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
24 ** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
25 ** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
26 **
27 ** Original Code. The Original Code is: OpenGL Sample Implementation,
28 ** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
29 ** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
30 ** Copyright in any portions created by third parties is as indicated
31 ** elsewhere herein. All Rights Reserved.
32 **
33 ** Additional Notice Provisions: The application programming interfaces
34 ** established by SGI in conjunction with the Original Code are The
35 ** OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
36 ** April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
37 ** 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
38 ** Window System(R) (Version 1.3), released October 19, 1998. This software
39 ** was created using the OpenGL(R) version 1.2.1 Sample Implementation
40 ** published by SGI, but has not been independently verified as being
41 ** compliant with the OpenGL(R) version 1.2.1 Specification.
42 */
43
44 /*-------------------------------------------------------------------------
45 * Definition of GL_APICALL and GL_APIENTRY
46 *-----------------------------------------------------------------------*/
47
48 #ifdef _WIN32
49 # ifdef __GL_EXPORTS
50 # define GL_APICALL __declspec(dllexport)
51 # else
52 # define GL_APICALL __declspec(dllimport)
53 # endif
54 # ifdef UNDER_CE
55 # define GL_APIENTRY
56 # else
57 # define GL_APIENTRY __stdcall
58 # endif
59 #else
60 # ifdef __GL_EXPORTS
61 # define GL_APICALL
62 # else
63 # define GL_APICALL extern
64 # endif
65 # define GL_APIENTRY
66 #endif
67
68
69 #ifdef __cplusplus
70 }
71 #endif
72
73 #endif /* __gl2platform_h_ */