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
92651b98
Commit
92651b98
authored
Mar 31, 2017
by
Piotr Caban
Committed by
Alexandre Julliard
Mar 31, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr120: Add fesetround implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
32bb8d90
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
27 additions
and
8 deletions
+27
-8
api-ms-win-crt-runtime-l1-1-0.spec
...win-crt-runtime-l1-1-0/api-ms-win-crt-runtime-l1-1-0.spec
+2
-2
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+2
-2
msvcr120_app.spec
dlls/msvcr120_app/msvcr120_app.spec
+2
-2
math.c
dlls/msvcrt/math.c
+19
-0
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+2
-2
No files found.
dlls/api-ms-win-crt-runtime-l1-1-0/api-ms-win-crt-runtime-l1-1-0.spec
View file @
92651b98
...
...
@@ -90,11 +90,11 @@
@ stub feclearexcept
@ cdecl fegetenv(ptr) ucrtbase.fegetenv
@ stub fegetexceptflag
@
stub
fegetround
@
cdecl fegetround() ucrtbase.
fegetround
@ stub feholdexcept
@ cdecl fesetenv(ptr) ucrtbase.fesetenv
@ stub fesetexceptflag
@
stub
fesetround
@
cdecl fesetround(long) ucrtbase.
fesetround
@ stub fetestexcept
@ cdecl perror(str) ucrtbase.perror
@ stub quick_exit
...
...
dlls/msvcr120/msvcr120.spec
View file @
92651b98
...
...
@@ -2146,14 +2146,14 @@
@ stub feclearexcept
@ cdecl fegetenv(ptr) MSVCRT_fegetenv
@ stub fegetexceptflag
@
stub
fegetround
@
cdecl fegetround() MSVCRT_
fegetround
@ stub feholdexcept
@ cdecl feof(ptr) MSVCRT_feof
@ stub feraiseexcept
@ cdecl ferror(ptr) MSVCRT_ferror
@ cdecl fesetenv(ptr) MSVCRT_fesetenv
@ stub fesetexceptflag
@
stub
fesetround
@
cdecl fesetround(long) MSVCRT_
fesetround
@ stub fetestexcept
@ stub feupdateenv
@ cdecl fflush(ptr) MSVCRT_fflush
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
92651b98
...
...
@@ -1812,14 +1812,14 @@
@ stub feclearexcept
@ cdecl fegetenv(ptr) msvcr120.fegetenv
@ stub fegetexceptflag
@
stub
fegetround
@
cdecl fegetround() msvcr120.
fegetround
@ stub feholdexcept
@ cdecl feof(ptr) msvcr120.feof
@ stub feraiseexcept
@ cdecl ferror(ptr) msvcr120.ferror
@ cdecl fesetenv(ptr) msvcr120.fesetenv
@ stub fesetexceptflag
@
stub
fesetround
@
cdecl fesetround(long) msvcr120.
fesetround
@ stub fetestexcept
@ stub feupdateenv
@ cdecl fflush(ptr) msvcr120.fflush
...
...
dlls/msvcrt/math.c
View file @
92651b98
...
...
@@ -1232,6 +1232,25 @@ int CDECL __fpe_flt_rounds(void)
}
/*********************************************************************
* fegetround (MSVCR120.@)
*/
int
CDECL
MSVCRT_fegetround
(
void
)
{
return
_controlfp
(
0
,
0
)
&
MSVCRT__RC_CHOP
;
}
/*********************************************************************
* fesetround (MSVCR120.@)
*/
int
CDECL
MSVCRT_fesetround
(
int
round_mode
)
{
if
(
round_mode
&
(
~
MSVCRT__RC_CHOP
))
return
1
;
_controlfp
(
round_mode
,
MSVCRT__RC_CHOP
);
return
0
;
}
/*********************************************************************
* _copysign (MSVCRT.@)
*/
double
CDECL
MSVCRT__copysign
(
double
num
,
double
sign
)
...
...
dlls/ucrtbase/ucrtbase.spec
View file @
92651b98
...
...
@@ -2289,13 +2289,13 @@
@ stub feclearexcept
@ cdecl fegetenv(ptr) MSVCRT_fegetenv
@ stub fegetexceptflag
@
stub
fegetround
@
cdecl fegetround() MSVCRT_
fegetround
@ stub feholdexcept
@ cdecl feof(ptr) MSVCRT_feof
@ cdecl ferror(ptr) MSVCRT_ferror
@ cdecl fesetenv(ptr) MSVCRT_fesetenv
@ stub fesetexceptflag
@
stub
fesetround
@
cdecl fesetround(long) MSVCRT_
fesetround
@ stub fetestexcept
@ cdecl fflush(ptr) MSVCRT_fflush
@ cdecl fgetc(ptr) MSVCRT_fgetc
...
...
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