glplatform.h revision 1b386f4416e8e7307ffe4f4c37e792eab18501dc
1#ifndef __glplatform_h_
2#define __glplatform_h_
3
4/* $Id: glplatform.h 4585 2007-11-30 09:49:39Z markc $ */
5
6#ifdef __cplusplus
7extern "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_API and GL_APIENTRY
46 *-----------------------------------------------------------------------*/
47
48#if defined(AEE_SIMULATOR)
49#define __GL_EXPORTS
50#endif
51
52#ifdef _WIN32
53#   ifdef __GL_EXPORTS
54#       define GL_API __declspec(dllexport)
55#   else
56#       define GL_API __declspec(dllimport)
57#   endif
58#else
59#   ifdef __GL_EXPORTS
60#       define GL_API
61#   else
62#       define GL_API extern
63#   endif
64#endif
65
66#define GL_APIENTRY
67
68#ifndef APIENTRY
69#   define APIENTRY GL_APIENTRY
70#endif
71
72#ifdef __cplusplus
73}
74#endif
75
76#endif /* __glplatform_h_ */
77