twain_32/tests: Use win_skip() to skip over unimplemented functionality.

This commit is contained in:
Francois Gouget 2009-02-26 09:45:33 +01:00 committed by Alexandre Julliard
parent e7800f2a52
commit 2ba5581924
1 changed files with 2 additions and 2 deletions

View File

@ -579,14 +579,14 @@ START_TEST(dsm)
htwain = LoadLibraryA("twain_32.dll");
if (! htwain)
{
skip("twain_32.dll not available, skipping tests\n");
win_skip("twain_32.dll not available, skipping tests\n");
return;
}
pDSM_Entry = (void*)GetProcAddress(htwain, "DSM_Entry");
ok(pDSM_Entry != NULL, "Unable to GetProcAddress DSM_Entry\n");
if (! pDSM_Entry)
{
skip("DSM_Entry not available, skipping tests\n");
win_skip("DSM_Entry not available, skipping tests\n");
return;
}