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
ef0e2af7
Commit
ef0e2af7
authored
Aug 27, 2002
by
Patrik Stridvall
Committed by
Alexandre Julliard
Aug 27, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MSVC long long fixes.
parent
f14b527f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
time.c
dlls/ntdll/time.c
+6
-6
newfns.c
win32/newfns.c
+1
-1
No files found.
dlls/ntdll/time.c
View file @
ef0e2af7
...
...
@@ -52,9 +52,9 @@ WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
#define MONSPERYEAR 12
/* 1601 to 1970 is 369 years plus 89 leap days */
#define SECS_1601_TO_1970 ((369 * 365 + 89) *
86400ULL
)
#define SECS_1601_TO_1970 ((369 * 365 + 89) *
(ULONGLONG)86400
)
/* 1601 to 1980 is 379 years plus 91 leap days */
#define SECS_1601_to_1980 ((379 * 365 + 91) *
86400ULL
)
#define SECS_1601_to_1980 ((379 * 365 + 91) *
(ULONGLONG)86400
)
static
const
int
YearLengths
[
2
]
=
{
DAYSPERNORMALYEAR
,
DAYSPERLEAPYEAR
};
...
...
@@ -88,7 +88,7 @@ VOID WINAPI RtlTimeToTimeFields(
int
LeapSecondCorrections
,
SecondsInDay
,
CurYear
;
int
LeapYear
,
CurMonth
,
GMTOffset
;
long
int
Days
;
long
long
int
Time
=
*
(
long
long
int
*
)
&
liTime
;
LONGLONG
Time
=
*
(
LONGLONG
*
)
&
liTime
;
/* Extract millisecond from time and convert time into seconds */
TimeFields
->
Milliseconds
=
(
CSHORT
)
((
Time
%
TICKSPERSEC
)
/
TICKSPERMSEC
);
...
...
@@ -155,7 +155,7 @@ BOOLEAN WINAPI RtlTimeFieldsToTime(
PLARGE_INTEGER
Time
)
{
int
CurYear
,
CurMonth
;
long
long
int
rcTime
;
LONGLONG
rcTime
;
TIME_FIELDS
TimeFields
=
*
tfTimeFields
;
rcTime
=
0
;
...
...
@@ -213,7 +213,7 @@ VOID WINAPI RtlSystemTimeToLocalTime(
BOOLEAN
WINAPI
RtlTimeToSecondsSince1970
(
const
FILETIME
*
time
,
LPDWORD
res
)
{
ULONGLONG
tmp
=
((
ULONGLONG
)
time
->
dwHighDateTime
<<
32
)
|
time
->
dwLowDateTime
;
tmp
=
RtlLargeIntegerDivide
(
tmp
,
10000000
LL
,
NULL
);
tmp
=
RtlLargeIntegerDivide
(
tmp
,
10000000
,
NULL
);
tmp
-=
SECS_1601_TO_1970
;
if
(
tmp
>
0xffffffff
)
return
FALSE
;
*
res
=
(
DWORD
)
tmp
;
...
...
@@ -226,7 +226,7 @@ BOOLEAN WINAPI RtlTimeToSecondsSince1970( const FILETIME *time, LPDWORD res )
BOOLEAN
WINAPI
RtlTimeToSecondsSince1980
(
const
FILETIME
*
time
,
LPDWORD
res
)
{
ULONGLONG
tmp
=
((
ULONGLONG
)
time
->
dwHighDateTime
<<
32
)
|
time
->
dwLowDateTime
;
tmp
=
RtlLargeIntegerDivide
(
tmp
,
10000000
LL
,
NULL
);
tmp
=
RtlLargeIntegerDivide
(
tmp
,
10000000
,
NULL
);
tmp
-=
SECS_1601_to_1980
;
if
(
tmp
>
0xffffffff
)
return
FALSE
;
*
res
=
(
DWORD
)
tmp
;
...
...
win32/newfns.c
View file @
ef0e2af7
...
...
@@ -127,7 +127,7 @@ BOOL WINAPI QueryPerformanceCounter(PLARGE_INTEGER counter)
/* generic routine */
gettimeofday
(
&
tv
,
NULL
);
counter
->
QuadPart
=
(
LONGLONG
)
tv
.
tv_usec
+
(
LONGLONG
)
tv
.
tv_sec
*
1000000
LL
;
counter
->
QuadPart
=
(
LONGLONG
)
tv
.
tv_usec
+
(
LONGLONG
)
tv
.
tv_sec
*
1000000
;
return
TRUE
;
}
...
...
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