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
8a658d7d
Commit
8a658d7d
authored
Dec 15, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Rename _ftime to avoid conflicts.
parent
e2b3ee53
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
msvcrt.h
dlls/msvcrt/msvcrt.h
+1
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
time.c
dlls/msvcrt/time.c
+2
-2
No files found.
dlls/msvcrt/msvcrt.h
View file @
8a658d7d
...
...
@@ -695,7 +695,7 @@ MSVCRT_wchar_t*** __cdecl __p__wenviron(void);
char
*
__cdecl
_strdate
(
char
*
date
);
char
*
__cdecl
_strtime
(
char
*
date
);
int
__cdecl
_setmbcp
(
int
);
void
__cdecl
_ftime
(
struct
MSVCRT__timeb
*
buf
);
void
__cdecl
MSVCRT_
_ftime
(
struct
MSVCRT__timeb
*
buf
);
int
__cdecl
MSVCRT__close
(
int
);
int
__cdecl
MSVCRT__dup
(
int
);
int
__cdecl
MSVCRT__dup2
(
int
,
int
);
...
...
dlls/msvcrt/msvcrt.spec
View file @
8a658d7d
...
...
@@ -262,7 +262,7 @@
@ cdecl _fstat(long ptr) MSVCRT__fstat
@ cdecl _fstat64(long ptr) MSVCRT__fstat64
@ cdecl _fstati64(long ptr) MSVCRT__fstati64
@ cdecl _ftime(ptr)
@ cdecl _ftime(ptr)
MSVCRT__ftime
@ cdecl -ret64 _ftol() ntdll._ftol
@ cdecl _fullpath(ptr str long)
@ cdecl _futime(long ptr)
...
...
dlls/msvcrt/time.c
View file @
8a658d7d
...
...
@@ -233,7 +233,7 @@ double CDECL MSVCRT_difftime(MSVCRT_time_t time1, MSVCRT_time_t time2)
/*********************************************************************
* _ftime (MSVCRT.@)
*/
void
CDECL
_ftime
(
struct
MSVCRT__timeb
*
buf
)
void
CDECL
MSVCRT_
_ftime
(
struct
MSVCRT__timeb
*
buf
)
{
TIME_ZONE_INFORMATION
tzinfo
;
FILETIME
ft
;
...
...
@@ -260,7 +260,7 @@ MSVCRT_time_t CDECL MSVCRT_time(MSVCRT_time_t* buf)
MSVCRT_time_t
curtime
;
struct
MSVCRT__timeb
tb
;
_ftime
(
&
tb
);
MSVCRT_
_ftime
(
&
tb
);
curtime
=
tb
.
time
;
return
buf
?
*
buf
=
curtime
:
curtime
;
...
...
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