MSVC long long fixes.

This commit is contained in:
Patrik Stridvall 2002-08-27 18:17:49 +00:00 committed by Alexandre Julliard
parent f14b527f40
commit ef0e2af708
2 changed files with 7 additions and 7 deletions

View File

@ -52,9 +52,9 @@ WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
#define MONSPERYEAR 12 #define MONSPERYEAR 12
/* 1601 to 1970 is 369 years plus 89 leap days */ /* 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 */ /* 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}; static const int YearLengths[2] = {DAYSPERNORMALYEAR, DAYSPERLEAPYEAR};
@ -88,7 +88,7 @@ VOID WINAPI RtlTimeToTimeFields(
int LeapSecondCorrections, SecondsInDay, CurYear; int LeapSecondCorrections, SecondsInDay, CurYear;
int LeapYear, CurMonth, GMTOffset; int LeapYear, CurMonth, GMTOffset;
long int Days; long int Days;
long long int Time = *(long long int *)&liTime; LONGLONG Time = *(LONGLONG *)&liTime;
/* Extract millisecond from time and convert time into seconds */ /* Extract millisecond from time and convert time into seconds */
TimeFields->Milliseconds = (CSHORT) ((Time % TICKSPERSEC) / TICKSPERMSEC); TimeFields->Milliseconds = (CSHORT) ((Time % TICKSPERSEC) / TICKSPERMSEC);
@ -155,7 +155,7 @@ BOOLEAN WINAPI RtlTimeFieldsToTime(
PLARGE_INTEGER Time) PLARGE_INTEGER Time)
{ {
int CurYear, CurMonth; int CurYear, CurMonth;
long long int rcTime; LONGLONG rcTime;
TIME_FIELDS TimeFields = *tfTimeFields; TIME_FIELDS TimeFields = *tfTimeFields;
rcTime = 0; rcTime = 0;
@ -213,7 +213,7 @@ VOID WINAPI RtlSystemTimeToLocalTime(
BOOLEAN WINAPI RtlTimeToSecondsSince1970( const FILETIME *time, LPDWORD res ) BOOLEAN WINAPI RtlTimeToSecondsSince1970( const FILETIME *time, LPDWORD res )
{ {
ULONGLONG tmp = ((ULONGLONG)time->dwHighDateTime << 32) | time->dwLowDateTime; ULONGLONG tmp = ((ULONGLONG)time->dwHighDateTime << 32) | time->dwLowDateTime;
tmp = RtlLargeIntegerDivide( tmp, 10000000LL, NULL ); tmp = RtlLargeIntegerDivide( tmp, 10000000, NULL );
tmp -= SECS_1601_TO_1970; tmp -= SECS_1601_TO_1970;
if (tmp > 0xffffffff) return FALSE; if (tmp > 0xffffffff) return FALSE;
*res = (DWORD)tmp; *res = (DWORD)tmp;
@ -226,7 +226,7 @@ BOOLEAN WINAPI RtlTimeToSecondsSince1970( const FILETIME *time, LPDWORD res )
BOOLEAN WINAPI RtlTimeToSecondsSince1980( const FILETIME *time, LPDWORD res ) BOOLEAN WINAPI RtlTimeToSecondsSince1980( const FILETIME *time, LPDWORD res )
{ {
ULONGLONG tmp = ((ULONGLONG)time->dwHighDateTime << 32) | time->dwLowDateTime; ULONGLONG tmp = ((ULONGLONG)time->dwHighDateTime << 32) | time->dwLowDateTime;
tmp = RtlLargeIntegerDivide( tmp, 10000000LL, NULL ); tmp = RtlLargeIntegerDivide( tmp, 10000000, NULL );
tmp -= SECS_1601_to_1980; tmp -= SECS_1601_to_1980;
if (tmp > 0xffffffff) return FALSE; if (tmp > 0xffffffff) return FALSE;
*res = (DWORD)tmp; *res = (DWORD)tmp;

View File

@ -127,7 +127,7 @@ BOOL WINAPI QueryPerformanceCounter(PLARGE_INTEGER counter)
/* generic routine */ /* generic routine */
gettimeofday( &tv, NULL ); gettimeofday( &tv, NULL );
counter->QuadPart = (LONGLONG)tv.tv_usec + (LONGLONG)tv.tv_sec * 1000000LL; counter->QuadPart = (LONGLONG)tv.tv_usec + (LONGLONG)tv.tv_sec * 1000000;
return TRUE; return TRUE;
} }