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
ccea6c60
Commit
ccea6c60
authored
Mar 30, 2015
by
Piotr Caban
Committed by
Alexandre Julliard
Mar 31, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr120: Add some missing exports on i386 architecture.
parent
d4fb6257
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
7 deletions
+10
-7
msvcr120.spec
dlls/msvcr120/msvcr120.spec
+4
-4
msvcr120_app.spec
dlls/msvcr120_app/msvcr120_app.spec
+2
-2
math.c
dlls/msvcrt/math.c
+4
-1
No files found.
dlls/msvcr120/msvcr120.spec
View file @
ccea6c60
...
...
@@ -893,8 +893,8 @@
@ stub -arch=i386,win64 __crtCompareStringEx
@ cdecl __crtCompareStringW(long long wstr long wstr long)
@ stub __crtCreateEventExW
@ stub -arch=i386 __
_
crtCreateSemaphoreExW
@ stub
-arch=x86_64
__crtCreateSymbolicLinkW
@ stub -arch=i386 __crtCreateSemaphoreExW
@ stub __crtCreateSymbolicLinkW
@ stub -arch=i386,win64 __crtEnumSystemLocalesEx
@ stub -arch=i386,win64 __crtFlsAlloc
@ stub -arch=i386,win64 __crtFlsFree
...
...
@@ -1057,7 +1057,7 @@
@ cdecl _chdir(str) MSVCRT__chdir
@ cdecl _chdrive(long) MSVCRT__chdrive
@ cdecl _chgsign(double) MSVCRT__chgsign
@ cdecl
-arch=arm,x86_64
_chgsignf(float) MSVCRT__chgsignf
@ cdecl _chgsignf(float) MSVCRT__chgsignf
@ cdecl -arch=i386 -norelay _chkesp()
@ cdecl _chmod(str long) MSVCRT__chmod
@ cdecl _chsize(long long) MSVCRT__chsize
...
...
@@ -1071,7 +1071,7 @@
@ cdecl _controlfp(long long)
@ cdecl _controlfp_s(ptr long long)
@ cdecl _copysign(double double) MSVCRT__copysign
@ cdecl
-arch=arm,x86_64
_copysignf(float float) MSVCRT__copysignf
@ cdecl _copysignf(float float) MSVCRT__copysignf
@ varargs _cprintf(str)
@ stub _cprintf_l
@ stub _cprintf_p
...
...
dlls/msvcr120_app/msvcr120_app.spec
View file @
ccea6c60
...
...
@@ -1021,7 +1021,7 @@
@ cdecl _calloc_crt(long long) msvcr120._calloc_crt
@ cdecl _cexit() msvcr120._cexit
@ cdecl _chgsign(double) msvcr120._chgsign
@ cdecl
-arch=arm,x86_64
_chgsignf(float) msvcr120._chgsignf
@ cdecl _chgsignf(float) msvcr120._chgsignf
@ cdecl -arch=i386 -norelay _chkesp() msvcr120._chkesp
@ cdecl _chmod(str long) msvcr120._chmod
@ cdecl _chsize(long long) msvcr120._chsize
...
...
@@ -1035,7 +1035,7 @@
@ cdecl _controlfp(long long) msvcr120._controlfp
@ cdecl _controlfp_s(ptr long long) msvcr120._controlfp_s
@ cdecl _copysign(double double) msvcr120._copysign
@ cdecl
-arch=arm,x86_64
_copysignf(float float) msvcr120._copysignf
@ cdecl _copysignf(float float) msvcr120._copysignf
@ cdecl _creat(str long) msvcr120._creat
@ cdecl _create_locale(long str) msvcr120._create_locale
@ stub -arch=i386 _crt_debugger_hook
...
...
dlls/msvcrt/math.c
View file @
ccea6c60
...
...
@@ -73,7 +73,7 @@ int CDECL MSVCRT__set_SSE2_enable(int flag)
return
sse2_enabled
;
}
#if defined(__x86_64__) || defined(__arm__)
#if defined(__x86_64__) || defined(__arm__)
|| _MSVCR_VER>=120
/*********************************************************************
* _chgsignf (MSVCRT.@)
...
...
@@ -94,6 +94,9 @@ float CDECL MSVCRT__copysignf( float num, float sign )
return
signbit
(
num
)
?
-
num
:
num
;
}
#endif
#if defined(__x86_64__) || defined(__arm__)
/*********************************************************************
* _finitef (MSVCRT.@)
*/
...
...
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