opencallbackconsole.cpp
来自「由7-zip提供的压缩、解压缩程序」· C++ 代码 · 共 48 行
CPP
48 行
// OpenCallbackConsole.cpp#include "StdAfx.h"#include "OpenCallbackConsole.h"#include "ConsoleClose.h"#include "UserInputUtils.h"HRESULT COpenCallbackConsole::CheckBreak(){ if (NConsoleClose::TestBreakSignal()) return E_ABORT; return S_OK;}HRESULT COpenCallbackConsole::SetTotal(const UInt64 *files, const UInt64 *bytes){ return CheckBreak();}HRESULT COpenCallbackConsole::SetCompleted(const UInt64 *files, const UInt64 *bytes){ return CheckBreak();} HRESULT COpenCallbackConsole::CryptoGetTextPassword(BSTR *password){ RINOK(CheckBreak()); if (!PasswordIsDefined) { Password = GetPassword(OutStream); PasswordIsDefined = true; } CMyComBSTR temp(Password); *password = temp.Detach(); return S_OK;}HRESULT COpenCallbackConsole::GetPasswordIfAny(UString &password){ if (PasswordIsDefined) password = Password; return S_OK;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?