mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 11:14:58 -06:00
25 lines
346 B
C++
Executable File
25 lines
346 B
C++
Executable File
// UserInputUtils.h
|
|
|
|
#ifndef __USERINPUTUTILS_H
|
|
#define __USERINPUTUTILS_H
|
|
|
|
#include "Common/StdOutStream.h"
|
|
|
|
namespace NUserAnswerMode {
|
|
|
|
enum EEnum
|
|
{
|
|
kYes,
|
|
kNo,
|
|
kYesAll,
|
|
kNoAll,
|
|
kAutoRenameAll,
|
|
kQuit
|
|
};
|
|
}
|
|
|
|
NUserAnswerMode::EEnum ScanUserYesNoAllQuit(CStdOutStream *outStream);
|
|
UString GetPassword(CStdOutStream *outStream);
|
|
|
|
#endif
|