Return the right error code for non-existent VxD modules.

oldstable
Alexandre Julliard 2004-02-25 01:31:17 +00:00
parent b26d65bba9
commit f39be9ff48
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}