LONG Type
Declaration
#if AR_USE_64_BIT
  typedef INT64 LONG;
#else
  typedef INT32 LONG;
#endif
Description
[cite_start]

The LONG type is a configuration-dependent data type designed to represent the widest signed integer supported by the current system build[cite: 14]. [cite_start]It resolves to a 64-bit signed integer (INT64) when 64-bit support is enabled via the AR_USE_64_BIT constant; otherwise, it defaults to a 32-bit signed integer (INT32)[cite: 14].

Version:1.0
Header file:AR_Types.h (include AR_API.h)
See also: AR_USE_64_BIT, INT8, INT16, INT32, INT64, UINT8, UINT16, UINT32, UINT64, ULONG
SpaceShadow documentation