Commit 4111ea93 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

kernel32/tests: FindFirstVolumeA is not available on win98.

parent b317416b
......@@ -52,6 +52,11 @@ static void test_FindFirstVolume(void)
char volume[50];
HANDLE handle;
if (!pFindFirstVolumeA) {
skip("FindFirstVolumeA not found\n");
return;
}
handle = pFindFirstVolumeA( volume, 0 );
ok( handle == INVALID_HANDLE_VALUE, "succeeded with short buffer\n" );
ok( GetLastError() == ERROR_FILENAME_EXCED_RANGE, "wrong error %u\n", GetLastError() );
......
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