xref: /third_party/lzma/CPP/7zip/UI/Console/UserInputUtils.h (revision 370b324c)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/lzma/CPP/7zip/UI/Console/
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

Indexes created Thu Nov 07 10:32:03 CST 2024