mirror of
https://github.com/holub/mame
synced 2025-05-01 20:27:02 +03:00
25 lines
346 B
C++
25 lines
346 B
C++
// 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
|