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