1// UserInputUtils.h 2 3#ifndef ZIP7_INC_USER_INPUT_UTILS_H 4#define ZIP7_INC_USER_INPUT_UTILS_H 5 6#include "../../../Common/StdOutStream.h" 7 8namespace NUserAnswerMode { 9 10enum EEnum 11{ 12 kYes, 13 kNo, 14 kYesAll, 15 kNoAll, 16 kAutoRenameAll, 17 kQuit, 18 kEof, 19 kError 20}; 21} 22 23NUserAnswerMode::EEnum ScanUserYesNoAllQuit(CStdOutStream *outStream); 24// bool GetPassword(CStdOutStream *outStream, UString &psw); 25HRESULT GetPassword_HRESULT(CStdOutStream *outStream, UString &psw); 26 27#endif 28