https://git.reactos.org/?p=reactos.git;a=commitdiff;h=c5e033e64327da2ca2a3f0c9e4e24d009eee3b9e
commit c5e033e64327da2ca2a3f0c9e4e24d009eee3b9e Author: Amine Khaldi <[email protected]> AuthorDate: Mon Dec 25 20:57:04 2017 +0100 [RAPPS] Remove conversion helper that is now obsolete. #179 --- base/applications/rapps/integrity.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/base/applications/rapps/integrity.cpp b/base/applications/rapps/integrity.cpp index d0fda8af90..10e022c90d 100644 --- a/base/applications/rapps/integrity.cpp +++ b/base/applications/rapps/integrity.cpp @@ -6,15 +6,11 @@ * COPYRIGHT: Copyright Ismael Ferreras Morezuelas ([email protected]) * Copyright Mark Jansen */ + #include "rapps.h" #include <sha1.h> -BOOL VerifyInteg(const ATL::CStringW &SHA1Hash, const ATL::CStringW &FileName) -{ - return VerifyInteg(SHA1Hash.GetString(), FileName.GetString()); -} - BOOL VerifyInteg(LPCWSTR lpSHA1Hash, LPCWSTR lpFileName) { BOOL ret = FALSE;
