From c0280c3c4938a564a01d515ebd6819adc40795dc Mon Sep 17 00:00:00 2001 From: gloriouseggroll Date: Sun, 18 Feb 2018 17:45:07 -0500 Subject: [PATCH] ntdll-User_Shared_Data: 0004-ntdll-tests-test-updating-tickcount fix missing pNtGetTickCount var --- ...l-tests-Test-updating-TickCount-in-user_shared_d.patch | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/patches/ntdll-User_Shared_Data/0004-ntdll-tests-Test-updating-TickCount-in-user_shared_d.patch b/patches/ntdll-User_Shared_Data/0004-ntdll-tests-Test-updating-TickCount-in-user_shared_d.patch index a3e09925..334d1f05 100644 --- a/patches/ntdll-User_Shared_Data/0004-ntdll-tests-Test-updating-TickCount-in-user_shared_d.patch +++ b/patches/ntdll-User_Shared_Data/0004-ntdll-tests-Test-updating-TickCount-in-user_shared_d.patch @@ -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)); }