Merge pull request #27 from GloriousEggroll/upstream

ntdll-User_Shared_Data: 0004-ntdll-tests-test-updating-tickcount fix …
This commit is contained in:
Alistair Leslie-Hughes 2018-02-19 15:35:42 +11:00 committed by GitHub
commit a4e0892be4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,6 +21,14 @@ index b684bc1980d..f90ac6ff91c 100644
#define TICKSPERSEC 10000000
#define TICKSPERMSEC 10000
@@ -29,6 +29,7 @@ static VOID (WINAPI *pRtlTimeFieldsToTime)( PTIME_FIELDS TimeFields, PLARGE_IN
static NTSTATUS (WINAPI *pNtQueryPerformanceCounter)( LARGE_INTEGER *counter, LARGE_INTEGER *frequency );
static NTSTATUS (WINAPI *pRtlQueryTimeZoneInformation)( RTL_TIME_ZONE_INFORMATION *);
static NTSTATUS (WINAPI *pRtlQueryDynamicTimeZoneInformation)( RTL_DYNAMIC_TIME_ZONE_INFORMATION *);
+static ULONG (WINAPI *pNtGetTickCount)(void);
static const int MonthLengths[2][12] =
{
@@ -153,12 +155,36 @@ static void test_RtlQueryTimeZoneInforma
wine_dbgstr_w(tzinfo.DaylightName));
}