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
9b8a0595
Commit
9b8a0595
authored
Aug 19, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
_ftol should return a 64-bit int (spotted by Jon Griffiths).
parent
32e929c0
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
crtdll.spec
dlls/crtdll/crtdll.spec
+1
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
msvcrtd.spec
dlls/msvcrtd/msvcrtd.spec
+1
-1
misc.c
dlls/ntdll/misc.c
+4
-4
ntdll.spec
dlls/ntdll/ntdll.spec
+1
-1
No files found.
dlls/crtdll/crtdll.spec
View file @
9b8a0595
...
...
@@ -112,7 +112,7 @@
@ cdecl _fsopen(str str long) msvcrt._fsopen
@ cdecl _fstat(long ptr) CRTDLL__fstat
@ cdecl _ftime(ptr) msvcrt._ftime
@ cdecl _ftol() msvcrt._ftol
@ cdecl
-ret64
_ftol() msvcrt._ftol
@ cdecl _fullpath(ptr str long) msvcrt._fullpath
@ cdecl _futime(long ptr) msvcrt._futime
@ cdecl _gcvt( double long str) msvcrt._gcvt
...
...
dlls/msvcrt/msvcrt.spec
View file @
9b8a0595
...
...
@@ -243,7 +243,7 @@
@ cdecl _fstat(long ptr) MSVCRT__fstat
@ cdecl _fstati64(long ptr)
@ cdecl _ftime(ptr)
@ cdecl _ftol() ntdll._ftol
@ cdecl
-ret64
_ftol() ntdll._ftol
@ cdecl _fullpath(ptr str long)
@ cdecl _futime(long ptr)
@ cdecl _gcvt(double long str)
...
...
dlls/msvcrtd/msvcrtd.spec
View file @
9b8a0595
...
...
@@ -271,7 +271,7 @@
@ cdecl _fstat(long ptr) msvcrt._fstat
@ cdecl _fstati64(long ptr) msvcrt._fstati64
@ cdecl _ftime(ptr) msvcrt._ftime
@ cdecl _ftol() ntdll._ftol
@ cdecl
-ret64
_ftol() ntdll._ftol
@ cdecl _fullpath(ptr str long) msvcrt._fullpath
@ cdecl _futime(long ptr) msvcrt._futime
@ cdecl _gcvt( double long str) msvcrt._gcvt
...
...
dlls/ntdll/misc.c
View file @
9b8a0595
...
...
@@ -54,13 +54,13 @@ LPCSTR debugstr_us( const UNICODE_STRING *us )
* [GNUC && i386]
*/
#if defined(__GNUC__) && defined(__i386__)
LONG
__cdecl
NTDLL__ftol
(
void
)
LONG
LONG
__cdecl
NTDLL__ftol
(
void
)
{
/* don't just do DO_FPU("fistp",retval), because the rounding
* mode must also be set to "round towards zero"... */
double
fl
;
POP_FPU
(
fl
);
return
(
LONG
)
fl
;
return
(
LONG
LONG
)
fl
;
}
#endif
/* defined(__GNUC__) && defined(__i386__) */
...
...
@@ -73,10 +73,10 @@ LONG __cdecl NTDLL__ftol(void)
* [!GNUC && i386]
*/
#if !defined(__GNUC__) && defined(__i386__)
LONG
__cdecl
NTDLL__ftol
(
double
fl
)
LONG
LONG
__cdecl
NTDLL__ftol
(
double
fl
)
{
FIXME
(
"should be register function
\n
"
);
return
(
LONG
)
fl
;
return
(
LONG
LONG
)
fl
;
}
#endif
/* !defined(__GNUC__) && defined(__i386__) */
...
...
dlls/ntdll/ntdll.spec
View file @
9b8a0595
...
...
@@ -908,7 +908,7 @@
@ stdcall -ret64 _aullrem(long long long long)
@ stdcall -register -i386 _chkstk() NTDLL_chkstk
@ stub _fltused
@ cdecl _ftol() NTDLL__ftol
@ cdecl
-ret64
_ftol() NTDLL__ftol
@ cdecl _i64toa(long long ptr long)
@ cdecl _i64tow(long long ptr long)
@ cdecl _itoa(long ptr long)
...
...
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