kernel32/tests: Add a skip message for win95.

This commit is contained in:
Paul Vriens 2008-06-08 14:09:37 +02:00 committed by Alexandre Julliard
parent ee69c6141b
commit fe5b8ada64
1 changed files with 6 additions and 0 deletions

View File

@ -38,11 +38,17 @@ static void test_timer(void)
pCreateWaitableTimerA = (fnCreateWaitableTimerA) GetProcAddress( hker, "CreateWaitableTimerA");
if( !pCreateWaitableTimerA )
{
skip("CreateWaitableTimerA is not available\n");
return;
}
pSetWaitableTimer = (fnSetWaitableTimer) GetProcAddress( hker, "SetWaitableTimer");
if( !pSetWaitableTimer )
{
skip("SetWaitableTimer is not available\n");
return;
}
/* try once with a positive number */
handle = pCreateWaitableTimerA( NULL, 0, NULL );