Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
dc7c2e46
Commit
dc7c2e46
authored
Sep 02, 2003
by
Vincent Béron
Committed by
Alexandre Julliard
Sep 02, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added msvcrt headers limits.h and math.h.
parent
1fc035d2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
0 deletions
+31
-0
Makefile.in
include/Makefile.in
+2
-0
limits.h
include/msvcrt/limits.h
+17
-0
math.h
include/msvcrt/math.h
+12
-0
No files found.
include/Makefile.in
View file @
dc7c2e46
...
...
@@ -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
\
...
...
include/msvcrt/limits.h
0 → 100644
View file @
dc7c2e46
#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 */
include/msvcrt/math.h
0 → 100644
View file @
dc7c2e46
#ifndef __WINE_MATH_H
#define __WINE_MATH_H
#ifdef __cplusplus
extern
"C"
{
#endif
#ifdef __cplusplus
}
#endif
#endif
/* __WINE_MATH_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment