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
0f721c2f
Commit
0f721c2f
authored
May 13, 2021
by
Piotr Caban
Committed by
Alexandre Julliard
May 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr120: Add feraiseexcept implementation.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cef4c8c3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
2 deletions
+14
-2
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+1
-1
msvcr120_app.spec
dlls/msvcr120_app/msvcr120_app.spec
+1
-1
math.c
dlls/msvcrt/math.c
+12
-0
No files found.
dlls/msvcr120/msvcr120.spec
View file @
0f721c2f
...
@@ -2149,7 +2149,7 @@
...
@@ -2149,7 +2149,7 @@
@ cdecl fegetround()
@ cdecl fegetround()
@ stub feholdexcept
@ stub feholdexcept
@ cdecl feof(ptr)
@ cdecl feof(ptr)
@
stub feraiseexcept
@
cdecl feraiseexcept(long)
@ cdecl ferror(ptr)
@ cdecl ferror(ptr)
@ cdecl fesetenv(ptr)
@ cdecl fesetenv(ptr)
@ cdecl fesetexceptflag(ptr long)
@ cdecl fesetexceptflag(ptr long)
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
0f721c2f
...
@@ -1815,7 +1815,7 @@
...
@@ -1815,7 +1815,7 @@
@ cdecl fegetround() msvcr120.fegetround
@ cdecl fegetround() msvcr120.fegetround
@ stub feholdexcept
@ stub feholdexcept
@ cdecl feof(ptr) msvcr120.feof
@ cdecl feof(ptr) msvcr120.feof
@
stub
feraiseexcept
@
cdecl feraiseexcept(long) msvcr120.
feraiseexcept
@ cdecl ferror(ptr) msvcr120.ferror
@ cdecl ferror(ptr) msvcr120.ferror
@ cdecl fesetenv(ptr) msvcr120.fesetenv
@ cdecl fesetenv(ptr) msvcr120.fesetenv
@ cdecl fesetexceptflag(ptr long) msvcr120.fesetexceptflag
@ cdecl fesetexceptflag(ptr long) msvcr120.fesetexceptflag
...
...
dlls/msvcrt/math.c
View file @
0f721c2f
...
@@ -2262,6 +2262,18 @@ int CDECL fesetexceptflag(const fexcept_t *status, int excepts)
...
@@ -2262,6 +2262,18 @@ int CDECL fesetexceptflag(const fexcept_t *status, int excepts)
}
}
/*********************************************************************
/*********************************************************************
* feraiseexcept (MSVCR120.@)
*/
int
CDECL
feraiseexcept
(
int
flags
)
{
fenv_t
env
;
fegetenv
(
&
env
);
env
.
_Fe_stat
|=
(
flags
&
FE_ALL_EXCEPT
);
return
fesetenv
(
&
env
);
}
/*********************************************************************
* feclearexcept (MSVCR120.@)
* feclearexcept (MSVCR120.@)
*/
*/
int
CDECL
feclearexcept
(
int
flags
)
int
CDECL
feclearexcept
(
int
flags
)
...
...
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