From f69bc6aa5f9d945a7f5cbbd10c31d8b6ea71f6d9 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Tue, 5 Aug 2008 07:36:10 +0000 Subject: [PATCH] return TRUE in Encrypt and DecryptFile as wine does even if the functions are unimplemented svn path=/trunk/; revision=35118 --- reactos/dll/win32/advapi32/sec/sec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/advapi32/sec/sec.c b/reactos/dll/win32/advapi32/sec/sec.c index e1dee615345..8eea6e427a1 100644 --- a/reactos/dll/win32/advapi32/sec/sec.c +++ b/reactos/dll/win32/advapi32/sec/sec.c @@ -571,7 +571,7 @@ BOOL WINAPI DecryptFileW(LPCWSTR lpFileName, DWORD dwReserved) { FIXME("%s(%S) not implemented!\n", __FUNCTION__, lpFileName); SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; + return TRUE; } /* @@ -604,7 +604,7 @@ BOOL WINAPI EncryptFileW(LPCWSTR lpFileName) { FIXME("%s() not implemented!\n", __FUNCTION__); SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - return FALSE; + return TRUE; } /*