mirror of
https://github.com/reactos/reactos.git
synced 2025-01-10 16:18:16 +00:00
8c6671477e
- start using our own c++ headers and forward stlport ones to them in msvc build. - fix fpecode declaration for MSVC. [CMAKE] - cardlib is a cpp library. Now stlport compiles with msvc. svn path=/branches/cmake-bringup/; revision=49552
17 lines
260 B
Text
17 lines
260 B
Text
// C limitations
|
|
|
|
#pragma once
|
|
|
|
#include <limits.h>
|
|
|
|
#ifndef LLONG_MIN
|
|
#define LLONG_MIN (-__LONG_LONG_MAX__ - 1)
|
|
#endif
|
|
|
|
#ifndef LLONG_MAX
|
|
#define LLONG_MAX __LONG_LONG_MAX__
|
|
#endif
|
|
|
|
#ifndef ULLONG_MAX
|
|
#define ULLONG_MAX (__LONG_LONG_MAX__ * 2ULL + 1)
|
|
#endif
|