GL Studio C++ Runtime API
disti_include.h
Go to the documentation of this file.
1/*! \file
2 \brief A file for all GL Studio files to include.
3
4 \par Copyright Information
5
6 Copyright (c) 2017 by The DiSTI Corporation.<br>
7 11301 Corporate Blvd., Suite 100<br>
8 Orlando, Florida 32817<br>
9 USA<br>
10 <br>
11 All rights reserved.<br>
12
13 This Software contains proprietary trade secrets of DiSTI and may not be
14reproduced, in whole or part, in any form, or by any means of electronic,
15mechanical, or otherwise, without the written permission of DiSTI. Said
16permission may be derived through the purchase of applicable DiSTI product
17licenses which detail the distribution rights of this content and any
18Derivative Works based on this or other copyrighted DiSTI Software.
19
20 NO WARRANTY. THE SOFTWARE IS PROVIDED "AS-IS," WITHOUT WARRANTY OF ANY KIND,
21AND ANY USE OF THIS SOFTWARE PRODUCT IS AT YOUR OWN RISK. TO THE MAXIMUM EXTENT
22PERMITTED BY APPLICABLE LAW, DISTI AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES
23AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
24IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY AND/OR FITNESS FOR A
25PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE.
26
27 LIMITATION OF LIABILITY. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW,
28IN NO EVENT SHALL DISTI OR ITS SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
29INDIRECT, OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION,
30DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS
31INFORMATION, OR ANY OTHER PECUNIARY LOSS) ARISING OUT OF THE USE OF OR
32INABILITY TO USE THE SOFTWARE, EVEN IF DISTI HAS BEEN ADVISED OF THE POSSIBILITY
33OF SUCH DAMAGES. DISTI'S ENTIRE LIABILITY AND YOUR EXCLUSIVE REMEDY SHALL NOT
34EXCEED FIVE DOLLARS (US$5.00).
35
36 The aforementioned terms and restrictions are governed by the laws of the
37State of Florida and the United States of America.
38
39*/
40
41/*
42 The following ifdef block is the standard way of creating macros which make exporting
43 from a DLL simpler. All files within this DLL are compiled with the DISTI_LIBRARY
44 symbol defined on the command line. this symbol should not be defined on any project
45 that uses this DLL. This way any other project whose source files include this file see
46 API functions as being imported from a DLL, wheras this DLL sees symbols
47 defined with this macro as being exported.
48*/
49#ifndef _DISTI_INCLUDE_H
50#define _DISTI_INCLUDE_H
51
52#ifdef GLS_DLL
53# define DISTI_DLL
54#endif
55
56#ifdef GLS_LIBRARY
57# define DISTI_LIBRARY
58#endif
59
60#ifdef GLS_EXPORT_LIBRARY
61# define DISTI_DLL
62# define DISTI_LIBRARY
63#endif
64
65#ifdef GLS_IMPORT_LIBRARY
66# define DISTI_DLL
67#endif
68
69#if defined( DISTI_DLL ) && defined( _MSC_VER )
70# ifdef DISTI_LIBRARY
71# define DISTI_EXPORT __declspec( dllexport )
72# else
73# define DISTI_EXPORT __declspec( dllimport )
74# endif
75#else
76# define DISTI_EXPORT
77#endif
78
79#if defined( _MSC_VER )
80# pragma warning( disable : 4786 ) // Harmless warning when using templates
81#endif
82
83#endif