Added msvcrt headers limits.h and math.h.
This commit is contained in:
parent
1fc035d221
commit
dc7c2e464e
|
@ -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 \
|
||||
|
|
|
@ -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 */
|
|
@ -0,0 +1,12 @@
|
|||
#ifndef __WINE_MATH_H
|
||||
#define __WINE_MATH_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __WINE_MATH_H */
|
Loading…
Reference in New Issue