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
986a67ab
Commit
986a67ab
authored
Feb 07, 2017
by
Fabian Maurer
Committed by
Alexandre Julliard
Feb 07, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr120: Add fesetenv stub.
Signed-off-by:
Fabian Maurer
<
dark.shadow4@web.de
>
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cabf9651
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
4 deletions
+13
-4
api-ms-win-crt-runtime-l1-1-0.spec
...win-crt-runtime-l1-1-0/api-ms-win-crt-runtime-l1-1-0.spec
+1
-1
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
+9
-0
ucrtbase.spec
dlls/ucrtbase/ucrtbase.spec
+1
-1
No files found.
dlls/api-ms-win-crt-runtime-l1-1-0/api-ms-win-crt-runtime-l1-1-0.spec
View file @
986a67ab
...
...
@@ -92,7 +92,7 @@
@ stub fegetexceptflag
@ stub fegetround
@ stub feholdexcept
@
stub
fesetenv
@
cdecl fesetenv(ptr) ucrtbase.
fesetenv
@ stub fesetexceptflag
@ stub fesetround
@ stub fetestexcept
...
...
dlls/msvcr120/msvcr120.spec
View file @
986a67ab
...
...
@@ -2151,7 +2151,7 @@
@ cdecl feof(ptr) MSVCRT_feof
@ stub feraiseexcept
@ cdecl ferror(ptr) MSVCRT_ferror
@
stub
fesetenv
@
cdecl fesetenv(ptr) MSVCRT_
fesetenv
@ stub fesetexceptflag
@ stub fesetround
@ stub fetestexcept
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
986a67ab
...
...
@@ -1817,7 +1817,7 @@
@ cdecl feof(ptr) msvcr120.feof
@ stub feraiseexcept
@ cdecl ferror(ptr) msvcr120.ferror
@
stub
fesetenv
@
cdecl fesetenv(ptr) msvcr120.
fesetenv
@ stub fesetexceptflag
@ stub fesetround
@ stub fetestexcept
...
...
dlls/msvcrt/math.c
View file @
986a67ab
...
...
@@ -1268,6 +1268,15 @@ void CDECL _fpreset(void)
}
/*********************************************************************
* fesetenv (MSVCR120.@)
*/
int
CDECL
MSVCRT_fesetenv
(
const
MSVCRT_fenv_t
*
env
)
{
FIXME
(
"(%p) stub
\n
"
,
env
);
return
0
;
}
/*********************************************************************
* _isnan (MSVCRT.@)
*/
INT
CDECL
MSVCRT__isnan
(
double
num
)
...
...
dlls/ucrtbase/ucrtbase.spec
View file @
986a67ab
...
...
@@ -2293,7 +2293,7 @@
@ stub feholdexcept
@ cdecl feof(ptr) MSVCRT_feof
@ cdecl ferror(ptr) MSVCRT_ferror
@
stub
fesetenv
@
cdecl fesetenv(ptr) MSVCRT_
fesetenv
@ stub fesetexceptflag
@ stub fesetround
@ stub fetestexcept
...
...
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