Commit f7478816 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

#ifdef out the tests if compiling with the Platform SDK headers since

they are missing TIME_FIELDS.
parent 5c033dad
......@@ -19,6 +19,9 @@
*/
#include "ntdll_test.h"
#ifdef __WINE_WINTERNL_H
#define TICKSPERSEC 10000000
#define TICKSPERMSEC 10000
#define SECSPERDAY 86400
......@@ -79,11 +82,14 @@ static void test_pRtlTimeToTimeFields()
litime.QuadPart += (LONGLONG) tftest.Day * TICKSPERSEC * SECSPERDAY;
}
}
#endif
START_TEST(time)
{
#ifdef __WINE_WINTERNL_H
HMODULE mod = GetModuleHandleA("ntdll.dll");
pRtlTimeToTimeFields = (void *)GetProcAddress(mod,"RtlTimeToTimeFields");
if (pRtlTimeToTimeFields)
test_pRtlTimeToTimeFields();
#endif
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment