LMMS
Loading...
Searching...
No Matches
compat.h
Go to the documentation of this file.
1/* libFLAC - Free Lossless Audio Codec library
2 * Copyright (C) 2012-2014 Xiph.org Foundation
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * - Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 *
11 * - 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 * - Neither the name of the Xiph.org Foundation nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
23 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32/* This is the prefered location of all CPP hackery to make $random_compiler
33 * work like something approaching a C99 (or maybe more accurately GNU99)
34 * compiler.
35 *
36 * It is assumed that this header will be included after "config.h".
37 */
38
39#ifndef FLAC__SHARE__COMPAT_H
40#define FLAC__SHARE__COMPAT_H
41
42#if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
43#define FLAC__off_t __int64 /* use this instead of off_t to fix the 2 GB limit */
44#if !defined __MINGW32__
45#define fseeko _fseeki64
46#define ftello _ftelli64
47#else /* MinGW */
48#if !defined(HAVE_FSEEKO)
49#define fseeko fseeko64
50#define ftello ftello64
51#endif
52#endif
53#else
54#define FLAC__off_t off_t
55#endif
56
57#if defined(_MSC_VER)
58#define strtoll _strtoi64
59#define strtoull _strtoui64
60#endif
61
62#if defined(_MSC_VER)
63#define inline __inline
64#endif
65
66#if defined __INTEL_COMPILER || (defined _MSC_VER && defined _WIN64)
67/* MSVS generates VERY slow 32-bit code with __restrict */
68#define flac_restrict __restrict
69#elif defined __GNUC__
70#define flac_restrict __restrict__
71#else
72#define flac_restrict
73#endif
74
75#define FLAC__U64L(x) x##ULL
76
77#if defined _MSC_VER || defined __BORLANDC__ || defined __MINGW32__
78#define FLAC__STRCASECMP stricmp
79#define FLAC__STRNCASECMP strnicmp
80#else
81#define FLAC__STRCASECMP strcasecmp
82#define FLAC__STRNCASECMP strncasecmp
83#endif
84
85#if defined _MSC_VER
86# if _MSC_VER >= 1600
87/* Visual Studio 2010 has decent C99 support */
88# define PRIu64 "llu"
89# define PRId64 "lld"
90# define PRIx64 "llx"
91# else
92# ifndef UINT32_MAX
93# define UINT32_MAX _UI32_MAX
94# endif
95 typedef unsigned __int64 uint64_t;
96 typedef unsigned __int32 uint32_t;
97 typedef unsigned __int16 uint16_t;
98 typedef unsigned __int8 uint8_t;
99 typedef __int64 int64_t;
100 typedef __int32 int32_t;
101 typedef __int16 int16_t;
102 typedef __int8 int8_t;
103# define PRIu64 "I64u"
104# define PRId64 "I64d"
105# define PRIx64 "I64x"
106# endif
107#endif /* defined _MSC_VER */
108
109#ifdef _WIN32
110/* All char* strings are in UTF-8 format. Added to support Unicode files on Windows */
111#include "win_utf8_io.h"
112
113#define flac_printf printf_utf8
114#define flac_fprintf fprintf_utf8
115#define flac_vfprintf vfprintf_utf8
116#define flac_fopen fopen_utf8
117#define flac_chmod chmod_utf8
118#define flac_utime utime_utf8
119#define flac_unlink unlink_utf8
120#define flac_rename rename_utf8
121#define flac_stat _stat64_utf8
122
123#else
124
125#define flac_printf printf
126#define flac_fprintf fprintf
127#define flac_vfprintf vfprintf
128#define flac_fopen fopen
129#define flac_chmod chmod
130#define flac_utime utime
131#define flac_unlink unlink
132#define flac_rename rename
133#define flac_stat stat
134
135#endif
136
137#ifdef _WIN32
138#define flac_stat_s __stat64 /* stat struct */
139#define flac_fstat _fstat64
140#else
141#define flac_stat_s stat /* stat struct */
142#define flac_fstat fstat
143#endif
144
145#ifndef M_LN2
146#define M_LN2 0.69314718055994530942
147#endif
148#ifndef M_PI
149#define M_PI 3.14159265358979323846
150#endif
151
152/* FLAC needs to compile and work correctly on systems with a normal ISO C99
153 * snprintf as well as Microsoft Visual Studio which has an non-standards
154 * conformant snprint_s function.
155 *
156 * This function wraps the MS version to behave more like the the ISO version.
157 */
158#ifdef __cplusplus
159extern "C" {
160#endif
161int flac_snprintf(char *str, size_t size, const char *fmt, ...);
162int flac_vsnprintf(char *str, size_t size, const char *fmt, va_list va);
163#ifdef __cplusplus
164}
165#endif
166
167#endif /* FLAC__SHARE__COMPAT_H */
int flac_vsnprintf(char *str, size_t size, const char *fmt, va_list va)
int flac_snprintf(char *str, size_t size, const char *fmt,...)
unsigned short uint16_t
Definition mid.cpp:99
int int32_t
Definition mid.cpp:97
unsigned int uint32_t
Definition mid.cpp:100
short int16_t
Definition mid.cpp:96
unsigned char uint8_t
Definition mid.cpp:98
signed char int8_t
Definition mid.cpp:95
#define __int64
ulg size
Definition extract.c:2350
fmt[0]
Definition fileio.c:2503