Commit 2ba55819 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent e7800f2a
......@@ -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;
}
......
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