1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-05 17:28:47 +00:00

Added msvcrt headers limits.h and math.h.

This commit is contained in:
Vincent Béron 2003-09-02 00:58:21 +00:00 committed by Alexandre Julliard
parent 1fc035d221
commit dc7c2e464e
3 changed files with 31 additions and 0 deletions

View File

@ -212,8 +212,10 @@ MSVCRT_INCLUDES = \
msvcrt/errno.h \
msvcrt/fcntl.h \
msvcrt/io.h \
msvcrt/limits.h \
msvcrt/locale.h \
msvcrt/malloc.h \
msvcrt/math.h \
msvcrt/mbctype.h \
msvcrt/mbstring.h \
msvcrt/process.h \

17
include/msvcrt/limits.h Normal file
View File

@ -0,0 +1,17 @@
#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 */

12
include/msvcrt/math.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef __WINE_MATH_H
#define __WINE_MATH_H
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif /* __WINE_MATH_H */