xref: /aosp_15_r20/external/lzma/CPP/7zip/UI/Console/UserInputUtils.h (revision f6dc9357d832569d4d1f5d24eacdb3935a1ae8e6)
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 
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