Give both --winver nt40 and win31 for VxD warning, as some programs

work with win31.
This commit is contained in:
Andreas Mohr 2001-02-14 00:28:48 +00:00 committed by Alexandre Julliard
parent 5b7e1810a1
commit 895d4f109e
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ HANDLE DEVICE_Open( LPCSTR filename, DWORD access,
if (!strncasecmp( info->name, filename, strlen(info->name) ))
return FILE_CreateDevice( info->id | 0x10000, access, sa );
FIXME( "Unknown VxD %s. Try --winver nt40 !\n", filename);
FIXME( "Unknown VxD %s. Try --winver nt40 or win31 !\n", filename);
SetLastError( ERROR_FILE_NOT_FOUND );
return 0;
}