Added a --winver nt40 hint to VxD error message.

This commit is contained in:
Andreas Mohr 2000-12-02 20:09:39 +00:00 committed by Alexandre Julliard
parent 60ebbefe0b
commit 08a114799e
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,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\n", filename);
FIXME( "Unknown VxD %s. Try --winver nt40 !\n", filename);
SetLastError( ERROR_FILE_NOT_FOUND );
return HFILE_ERROR;
}