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

they are missing TIME_FIELDS.
oldstable
Francois Gouget 2004-10-30 02:10:38 +00:00 committed by Alexandre Julliard
parent 5c033dad79
commit f7478816d4
1 changed files with 6 additions and 0 deletions

View File

@ -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
}