Path: blob/master/genplus-gx32/libretro/msvc/msvc-2003-xbox1/stdint.h
2 views
// ISO C9x compliant stdint.h for Microsoft Visual Studio1// Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N11242//3// Copyright (c) 2006-2008 Alexander Chemeris4//5// Redistribution and use in source and binary forms, with or without6// modification, are permitted provided that the following conditions are met:7//8// 1. Redistributions of source code must retain the above copyright notice,9// this list of conditions and the following disclaimer.10//11// 2. Redistributions in binary form must reproduce the above copyright12// notice, this list of conditions and the following disclaimer in the13// documentation and/or other materials provided with the distribution.14//15// 3. The name of the author may be used to endorse or promote products16// derived from this software without specific prior written permission.17//18// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED19// WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF20// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO21// EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,22// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,23// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;24// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,25// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR26// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF27// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.28//29///////////////////////////////////////////////////////////////////////////////30#ifndef __RARCH_STDINT_H31#define __RARCH_STDINT_H3233#if _MSC_VER && (_MSC_VER < 1600)34//pre-MSVC 2010 needs an implementation of stdint.h3536#if _MSC_VER > 100037#pragma once38#endif3940#include <limits.h>4142// For Visual Studio 6 in C++ mode and for many Visual Studio versions when43// compiling for ARM we should wrap <wchar.h> include with 'extern "C++" {}'44// or compiler give many errors like this:45// error C2733: second C linkage of overloaded function 'wmemchr' not allowed46#ifdef __cplusplus47extern "C" {48#endif49# include <wchar.h>50#ifdef __cplusplus51}52#endif5354// Define _W64 macros to mark types changing their size, like intptr_t.55#ifndef _W6456# if !defined(__midl) && (defined(_X86_) || defined(_M_IX86)) && _MSC_VER >= 130057# define _W64 __w6458# else59# define _W6460# endif61#endif626364// 7.18.1 Integer types6566// 7.18.1.1 Exact-width integer types6768// Visual Studio 6 and Embedded Visual C++ 4 doesn't69// realize that, e.g. char has the same size as __int870// so we give up on __intX for them.71#if (_MSC_VER < 1300)72typedef signed char int8_t;73typedef signed short int16_t;74typedef signed int int32_t;75typedef unsigned char uint8_t;76typedef unsigned short uint16_t;77typedef unsigned int uint32_t;78#else79typedef signed __int8 int8_t;80typedef signed __int16 int16_t;81typedef signed __int32 int32_t;82typedef unsigned __int8 uint8_t;83typedef unsigned __int16 uint16_t;84typedef unsigned __int32 uint32_t;85#endif86typedef signed __int64 int64_t;87typedef unsigned __int64 uint64_t;888990// 7.18.1.2 Minimum-width integer types91typedef int8_t int_least8_t;92typedef int16_t int_least16_t;93typedef int32_t int_least32_t;94typedef int64_t int_least64_t;95typedef uint8_t uint_least8_t;96typedef uint16_t uint_least16_t;97typedef uint32_t uint_least32_t;98typedef uint64_t uint_least64_t;99100// 7.18.1.3 Fastest minimum-width integer types101typedef int8_t int_fast8_t;102typedef int16_t int_fast16_t;103typedef int32_t int_fast32_t;104typedef int64_t int_fast64_t;105typedef uint8_t uint_fast8_t;106typedef uint16_t uint_fast16_t;107typedef uint32_t uint_fast32_t;108typedef uint64_t uint_fast64_t;109110// 7.18.1.4 Integer types capable of holding object pointers111#ifdef _WIN64 // [112typedef signed __int64 intptr_t;113typedef unsigned __int64 uintptr_t;114#else // _WIN64 ][115typedef _W64 signed int intptr_t;116typedef _W64 unsigned int uintptr_t;117#endif // _WIN64 ]118119// 7.18.1.5 Greatest-width integer types120typedef int64_t intmax_t;121typedef uint64_t uintmax_t;122123124// 7.18.2 Limits of specified-width integer types125126#if !defined(__cplusplus) || defined(__STDC_LIMIT_MACROS) // [ See footnote 220 at page 257 and footnote 221 at page 259127128// 7.18.2.1 Limits of exact-width integer types129#define INT8_MIN ((int8_t)_I8_MIN)130#define INT8_MAX _I8_MAX131#define INT16_MIN ((int16_t)_I16_MIN)132#define INT16_MAX _I16_MAX133#define INT32_MIN ((int32_t)_I32_MIN)134#define INT32_MAX _I32_MAX135#define INT64_MIN ((int64_t)_I64_MIN)136#define INT64_MAX _I64_MAX137#define UINT8_MAX _UI8_MAX138#define UINT16_MAX _UI16_MAX139#define UINT32_MAX _UI32_MAX140#define UINT64_MAX _UI64_MAX141142// 7.18.2.2 Limits of minimum-width integer types143#define INT_LEAST8_MIN INT8_MIN144#define INT_LEAST8_MAX INT8_MAX145#define INT_LEAST16_MIN INT16_MIN146#define INT_LEAST16_MAX INT16_MAX147#define INT_LEAST32_MIN INT32_MIN148#define INT_LEAST32_MAX INT32_MAX149#define INT_LEAST64_MIN INT64_MIN150#define INT_LEAST64_MAX INT64_MAX151#define UINT_LEAST8_MAX UINT8_MAX152#define UINT_LEAST16_MAX UINT16_MAX153#define UINT_LEAST32_MAX UINT32_MAX154#define UINT_LEAST64_MAX UINT64_MAX155156// 7.18.2.3 Limits of fastest minimum-width integer types157#define INT_FAST8_MIN INT8_MIN158#define INT_FAST8_MAX INT8_MAX159#define INT_FAST16_MIN INT16_MIN160#define INT_FAST16_MAX INT16_MAX161#define INT_FAST32_MIN INT32_MIN162#define INT_FAST32_MAX INT32_MAX163#define INT_FAST64_MIN INT64_MIN164#define INT_FAST64_MAX INT64_MAX165#define UINT_FAST8_MAX UINT8_MAX166#define UINT_FAST16_MAX UINT16_MAX167#define UINT_FAST32_MAX UINT32_MAX168#define UINT_FAST64_MAX UINT64_MAX169170// 7.18.2.4 Limits of integer types capable of holding object pointers171#ifdef _WIN64 // [172# define INTPTR_MIN INT64_MIN173# define INTPTR_MAX INT64_MAX174# define UINTPTR_MAX UINT64_MAX175#else // _WIN64 ][176# define INTPTR_MIN INT32_MIN177# define INTPTR_MAX INT32_MAX178# define UINTPTR_MAX UINT32_MAX179#endif // _WIN64 ]180181// 7.18.2.5 Limits of greatest-width integer types182#define INTMAX_MIN INT64_MIN183#define INTMAX_MAX INT64_MAX184#define UINTMAX_MAX UINT64_MAX185186// 7.18.3 Limits of other integer types187188#ifdef _WIN64 // [189# define PTRDIFF_MIN _I64_MIN190# define PTRDIFF_MAX _I64_MAX191#else // _WIN64 ][192# define PTRDIFF_MIN _I32_MIN193# define PTRDIFF_MAX _I32_MAX194#endif // _WIN64 ]195196#define SIG_ATOMIC_MIN INT_MIN197#define SIG_ATOMIC_MAX INT_MAX198199#ifndef SIZE_MAX // [200# ifdef _WIN64 // [201# define SIZE_MAX _UI64_MAX202# else // _WIN64 ][203# define SIZE_MAX _UI32_MAX204# endif // _WIN64 ]205#endif // SIZE_MAX ]206207// WCHAR_MIN and WCHAR_MAX are also defined in <wchar.h>208#ifndef WCHAR_MIN // [209# define WCHAR_MIN 0210#endif // WCHAR_MIN ]211#ifndef WCHAR_MAX // [212# define WCHAR_MAX _UI16_MAX213#endif // WCHAR_MAX ]214215#define WINT_MIN 0216#define WINT_MAX _UI16_MAX217218#endif // __STDC_LIMIT_MACROS ]219220221// 7.18.4 Limits of other integer types222223#if !defined(__cplusplus) || defined(__STDC_CONSTANT_MACROS) // [ See footnote 224 at page 260224225// 7.18.4.1 Macros for minimum-width integer constants226227#define INT8_C(val) val##i8228#define INT16_C(val) val##i16229#define INT32_C(val) val##i32230#define INT64_C(val) val##i64231232#define UINT8_C(val) val##ui8233#define UINT16_C(val) val##ui16234#define UINT32_C(val) val##ui32235#define UINT64_C(val) val##ui64236237// 7.18.4.2 Macros for greatest-width integer constants238#define INTMAX_C INT64_C239#define UINTMAX_C UINT64_C240241#endif // __STDC_CONSTANT_MACROS ]242243#else244//sanity for everything else245#include <stdint.h>246#endif247248#endif249250251