mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
better stub for FileEncryptionStatusW
svn path=/trunk/; revision=30488
This commit is contained in:
parent
705aec95ec
commit
ef944678e3
1 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue