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:
Christoph von Wittich 2008-08-05 07:36:10 +00:00
parent 1dbbf02a7e
commit f69bc6aa5f

View file

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