UserInputUtils.h 343 B

123456789101112131415161718192021222324
  1. // UserInputUtils.h
  2. #ifndef __USERINPUTUTILS_H
  3. #define __USERINPUTUTILS_H
  4. #include "Common/StdOutStream.h"
  5. namespace NUserAnswerMode {
  6. enum EEnum
  7. {
  8. kYes,
  9. kNo,
  10. kYesAll,
  11. kNoAll,
  12. kAutoRename,
  13. kQuit
  14. };
  15. }
  16. NUserAnswerMode::EEnum ScanUserYesNoAllQuit(CStdOutStream *outStream);
  17. UString GetPassword(CStdOutStream *outStream);
  18. #endif