[v2.0] Fixed problem with Borland C++ Builder (Borland C do not have lrintf). Thanks...
[openjpeg.git] / libopenjpeg / opj_includes.h
1 /*
2  * Copyright (c) 2005, Herv� Drolon, FreeImage Team
3  * Copyright (c) 2008, Jerome Fimes, Communications & Systemes <jerome.fimes@c-s.fr>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
16  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25  * POSSIBILITY OF SUCH DAMAGE.
26  */
27 #ifndef OPJ_INCLUDES_H
28 #define OPJ_INCLUDES_H
29
30 /*
31  ==========================================================
32    Standard includes used by the library
33  ==========================================================
34 */
35 #include <memory.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <math.h>
39 #include <float.h>
40 #include <time.h>
41 #include <stdio.h>
42 #include <stdarg.h>
43 #include <ctype.h>
44 #include <assert.h>
45
46 /*
47  ==========================================================
48    OpenJPEG interface
49  ==========================================================
50  */
51
52 /*
53  ==========================================================
54    OpenJPEG modules
55  ==========================================================
56 */
57
58 /* Ignore GCC attributes if this is not GCC */
59 #ifndef __GNUC__
60         #define __attribute__(x) /* __attribute__(x) */
61 #endif
62
63 /*
64 The inline keyword is supported by C99 but not by C90. 
65 Most compilers implement their own version of this keyword ... 
66 */
67 #ifndef INLINE
68         #if defined(_MSC_VER)
69                 #define INLINE __inline
70         #elif defined(__GNUC__)
71                 #define INLINE __inline__
72         #elif defined(__MWERKS__)
73                 #define INLINE inline
74         #else 
75                 /* add other compilers here ... */
76                 #define INLINE 
77         #endif /* defined(<Compiler>) */
78 #endif /* INLINE */
79
80 /* Are restricted pointers available? (C99) */
81 #if (__STDC_VERSION__ != 199901L)
82         /* Not a C99 compiler */
83         #ifdef __GNUC__
84                 #define restrict __restrict__
85         #else
86                 #define restrict /* restrict */
87         #endif
88 #endif
89
90 /* MSVC and Borland C do not have lrintf */
91 #if defined(_MSC_VER) || defined(__BORLANDC__)
92 static INLINE long lrintf(float f){
93         int i;
94
95         _asm{
96                 fld f
97                 fistp i
98         };
99
100         return i;
101 }
102 #endif
103
104 #endif /* OPJ_INCLUDES_H */