Re: [PATCH] msvcp120: Implemented xtime functions. (try 2)
Yifu Wang <YWang(a)esri.com> writes:
@@ -33,6 +33,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(msvcp); #define SECS_1601_TO_1970 ((369 * 365 + 89) * (ULONGLONG)SECSPERDAY) #define TICKSPERSEC 10000000 #define TICKS_1601_TO_1970 (SECS_1601_TO_1970 * TICKSPERSEC) +#define NANOSEC_PER_MICROSEC 1000000 +#define MICROSEC_PER_SEC 1000
Something's not quite right here ;-) -- Alexandre Julliard julliard(a)winehq.org
Oops :) I have changed those to MILLISEC and resent the patch. Thanks, Yifu -----Original Message----- From: Alexandre Julliard [mailto:julliard(a)winehq.org] Sent: Wednesday, January 07, 2015 9:16 AM To: Yifu Wang Cc: wine-devel(a)winehq.org Subject: Re: [PATCH] msvcp120: Implemented xtime functions. (try 2) Yifu Wang <YWang(a)esri.com> writes:
@@ -33,6 +33,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(msvcp); #define SECS_1601_TO_1970 ((369 * 365 + 89) * (ULONGLONG)SECSPERDAY) #define TICKSPERSEC 10000000 #define TICKS_1601_TO_1970 (SECS_1601_TO_1970 * TICKSPERSEC) +#define NANOSEC_PER_MICROSEC 1000000 +#define MICROSEC_PER_SEC 1000
Something's not quite right here ;-) -- Alexandre Julliard julliard(a)winehq.org
participants (2)
-
Alexandre Julliard -
Yifu Wang