1// HashGUI.h 2 3#ifndef ZIP7_INC_HASH_GUI_H 4#define ZIP7_INC_HASH_GUI_H 5 6#include "../Common/HashCalc.h" 7#include "../Common/Property.h" 8 9HRESULT HashCalcGUI( 10 DECL_EXTERNAL_CODECS_LOC_VARS 11 const NWildcard::CCensor &censor, 12 const CHashOptions &options, 13 bool &messageWasDisplayed); 14 15typedef CObjectVector<CProperty> CPropNameValPairs; 16 17void AddValuePair(CPropNameValPairs &pairs, UINT resourceID, UInt64 value); 18void AddSizeValue(UString &s, UInt64 value); 19void AddSizeValuePair(CPropNameValPairs &pairs, UINT resourceID, UInt64 value); 20 21void AddHashBundleRes(CPropNameValPairs &s, const CHashBundle &hb); 22void AddHashBundleRes(UString &s, const CHashBundle &hb); 23 24void ShowHashResults(const CPropNameValPairs &propPairs, HWND hwnd); 25void ShowHashResults(const CHashBundle &hb, HWND hwnd); 26 27#endif 28