Return the right error code for non-existent VxD modules.
This commit is contained in:
parent
b26d65bba9
commit
f39be9ff48
|
@ -193,6 +193,7 @@ HANDLE VXD_Open( LPCWSTR filenameW, DWORD access, SECURITY_ATTRIBUTES *sa )
|
|||
{
|
||||
FIXME( "Unknown/unsupported VxD %s. Try setting Windows version to 'nt40' or 'win31'.\n",
|
||||
debugstr_w(name) );
|
||||
SetLastError( ERROR_FILE_NOT_FOUND );
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue