mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 16:22:58 +00:00
return TRUE in Encrypt and DecryptFile as wine does even if the functions are unimplemented
svn path=/trunk/; revision=35118
This commit is contained in:
parent
1dbbf02a7e
commit
f69bc6aa5f
1 changed files with 2 additions and 2 deletions
|
@ -571,7 +571,7 @@ BOOL WINAPI DecryptFileW(LPCWSTR lpFileName, DWORD dwReserved)
|
||||||
{
|
{
|
||||||
FIXME("%s(%S) not implemented!\n", __FUNCTION__, lpFileName);
|
FIXME("%s(%S) not implemented!\n", __FUNCTION__, lpFileName);
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return FALSE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -604,7 +604,7 @@ BOOL WINAPI EncryptFileW(LPCWSTR lpFileName)
|
||||||
{
|
{
|
||||||
FIXME("%s() not implemented!\n", __FUNCTION__);
|
FIXME("%s() not implemented!\n", __FUNCTION__);
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
return FALSE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue