genapic/GenApiCTypes.h#
Types#
Name | |
---|---|
typedef unsigned char | _Bool |
typedef __int16 | int16_t |
typedef __int32 | int32_t |
typedef __int64 | int64_t |
typedef __int8 | int8_t |
typedef __int32 | intptr_t |
typedef unsigned __int16 | uint16_t |
typedef unsigned __int32 | uint32_t |
typedef unsigned __int64 | uint64_t |
typedef unsigned __int8 | uint8_t |
typedef unsigned __int32 | uintptr_t |
Defines#
Name |
---|
INT32_MAX |
INT32_MIN |
INT64_MAX |
INT64_MIN |
INT8_MAX |
INT8_MIN |
UINT32_MAX |
UINT64_MAX |
UINT8_MAX |
Types Documentation#
typedef _Bool#
Mimic c99 built-in _Bool type.
typedef int16_t#
Portable 16 bit-wide signed integer type.
typedef int32_t#
Portable 32 bit-wide signed integer type.
typedef int64_t#
Portable 64 bit-wide signed integer type.
typedef int8_t#
Portable 8 bit-wide signed integer type.
typedef intptr_t#
Portable signed integer type capable of holding a pointer.
typedef uint16_t#
Portable 16 bit-wide unsigned integer type.
typedef uint32_t#
Portable 32 bit-wide unsigned integer type.
typedef uint64_t#
Portable 64 bit-wide unsigned integer type.
typedef uint8_t#
Portable 8 bit-wide unsigned integer type.
typedef uintptr_t#
Portable unsigned integer type capable of holding a pointer.