Loading...
Searching...
No Matches
Go to the documentation of this file.
9#if defined (_MSC_VER) && (_MSC_VER < 1600)
10#include "msinttypes/stdint.h"
17#define UINT32_T_MAX (0xffffffff)
20#define INT32_T_MAX (0x7fffffff)
23#define INT32_T_MIN (-0x7fffffff - 1)
29#if (CMAKE_SIZEOF_SIZE_T == 8)
30typedef int64_t plm_long;
31#elif (CMAKE_SIZEOF_SIZE_T == 4)
32typedef int32_t plm_long;
34#error "Unexpected value for sizeof(size_t)"