18 lines
256 B
C
18 lines
256 B
C
#ifndef __WINE_LIMITS_H
|
|
#define __WINE_LIMITS_H
|
|
|
|
#define INT_MAX 2147483647
|
|
#define INT_MIN (-2147483648)
|
|
#define SHRT_MAX 32767
|
|
#define SHRT_MIN (-32768)
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __WINE_LIMITS_H */
|