mirror of
https://github.com/holub/mame
synced 2025-05-01 20:27:02 +03:00
59 lines
1.1 KiB
C++
59 lines
1.1 KiB
C++
// OpenCallbackConsole.cpp
|
|
|
|
#include "StdAfx.h"
|
|
|
|
#include "OpenCallbackConsole.h"
|
|
|
|
#include "ConsoleClose.h"
|
|
#include "UserInputUtils.h"
|
|
|
|
HRESULT COpenCallbackConsole::Open_CheckBreak()
|
|
{
|
|
if (NConsoleClose::TestBreakSignal())
|
|
return E_ABORT;
|
|
return S_OK;
|
|
}
|
|
|
|
HRESULT COpenCallbackConsole::Open_SetTotal(const UInt64 *, const UInt64 *)
|
|
{
|
|
return Open_CheckBreak();
|
|
}
|
|
|
|
HRESULT COpenCallbackConsole::Open_SetCompleted(const UInt64 *, const UInt64 *)
|
|
{
|
|
return Open_CheckBreak();
|
|
}
|
|
|
|
#ifndef _NO_CRYPTO
|
|
|
|
HRESULT COpenCallbackConsole::Open_CryptoGetTextPassword(BSTR *password)
|
|
{
|
|
PasswordWasAsked = true;
|
|
RINOK(Open_CheckBreak());
|
|
if (!PasswordIsDefined)
|
|
{
|
|
Password = GetPassword(OutStream);
|
|
PasswordIsDefined = true;
|
|
}
|
|
return StringToBstr(Password, password);
|
|
}
|
|
|
|
HRESULT COpenCallbackConsole::Open_GetPasswordIfAny(UString &password)
|
|
{
|
|
if (PasswordIsDefined)
|
|
password = Password;
|
|
return S_OK;
|
|
}
|
|
|
|
bool COpenCallbackConsole::Open_WasPasswordAsked()
|
|
{
|
|
return PasswordWasAsked;
|
|
}
|
|
|
|
void COpenCallbackConsole::Open_ClearPasswordWasAskedFlag()
|
|
{
|
|
PasswordWasAsked = false;
|
|
}
|
|
|
|
#endif
|