mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[VCRUNTIME] Move some definitions from crtdefs.h to vadefs.h
This commit is contained in:
parent
1d01b8c6f0
commit
90e95d15a2
2 changed files with 33 additions and 33 deletions
|
@ -211,45 +211,12 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifndef _UINTPTR_T_DEFINED
|
||||
#define _UINTPTR_T_DEFINED
|
||||
#ifndef __uintptr_t_defined
|
||||
#define __uintptr_t_defined
|
||||
#undef uintptr_t
|
||||
#ifdef _WIN64
|
||||
#if defined(__GNUC__) && defined(__STRICT_ANSI__)
|
||||
typedef unsigned int uintptr_t __attribute__ ((mode (DI)));
|
||||
#else
|
||||
__MINGW_EXTENSION typedef unsigned __int64 uintptr_t;
|
||||
#endif
|
||||
#else
|
||||
typedef unsigned int uintptr_t;
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef _WCTYPE_T_DEFINED
|
||||
#define _WCTYPE_T_DEFINED
|
||||
typedef unsigned short wint_t;
|
||||
typedef unsigned short wctype_t;
|
||||
#endif
|
||||
|
||||
#ifdef __GNUC__
|
||||
#ifndef __GNUC_VA_LIST
|
||||
#define __GNUC_VA_LIST
|
||||
typedef __builtin_va_list __gnuc_va_list;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef _VA_LIST_DEFINED
|
||||
#define _VA_LIST_DEFINED
|
||||
#if defined(__GNUC__)
|
||||
typedef __gnuc_va_list va_list;
|
||||
#elif defined(_MSC_VER)
|
||||
typedef _Writable_bytes_(_Inexpressible_("length varies")) char * va_list;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef _ERRCODE_DEFINED
|
||||
#define _ERRCODE_DEFINED
|
||||
typedef int errcode;
|
||||
|
|
|
@ -18,6 +18,39 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifdef __GNUC__
|
||||
#ifndef __GNUC_VA_LIST
|
||||
#define __GNUC_VA_LIST
|
||||
typedef __builtin_va_list __gnuc_va_list;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef _VA_LIST_DEFINED
|
||||
#define _VA_LIST_DEFINED
|
||||
#if defined(__GNUC__)
|
||||
typedef __gnuc_va_list va_list;
|
||||
#elif defined(_MSC_VER)
|
||||
typedef _Writable_bytes_(_Inexpressible_("length varies")) char * va_list;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef _UINTPTR_T_DEFINED
|
||||
#define _UINTPTR_T_DEFINED
|
||||
#ifndef __uintptr_t_defined
|
||||
#define __uintptr_t_defined
|
||||
#undef uintptr_t
|
||||
#ifdef _WIN64
|
||||
#if defined(__GNUC__) && defined(__STRICT_ANSI__)
|
||||
typedef unsigned int uintptr_t __attribute__ ((mode (DI)));
|
||||
#else
|
||||
typedef unsigned __int64 uintptr_t;
|
||||
#endif
|
||||
#else
|
||||
typedef unsigned int uintptr_t;
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
#define _ADDRESSOF(v) (&reinterpret_cast<const char &>(v))
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue