better stub for FileEncryptionStatusW

svn path=/trunk/; revision=30488
This commit is contained in:
Christoph von Wittich 2007-11-15 23:46:15 +00:00
parent 705aec95ec
commit ef944678e3

View file

@ -1997,8 +1997,10 @@ BOOL WINAPI FileEncryptionStatusW (
)
{
DPRINT1("%s(%S) not implemented!\n", __FUNCTION__, lpFileName);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
if (!lpStatus)
return FALSE;
*lpStatus = FILE_SYSTEM_NOT_SUPPORT;
return TRUE;
}