/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/noui.h
28 строк
1 KB
MarcoFalke
refactor: Make ThreadSafeMessageBox signal void
11 июн 2026, 22:31
11 июн 2026, 22:31
fa4badc
Код
Авторство
О чём код?
// Copyright (c) 2013-present The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_NOUI_H #define BITCOIN_NOUI_H #include <string> struct bilingual_str; /** Non-GUI handler, which logs and prints messages. */ void noui_ThreadSafeMessageBox(const bilingual_str& message, unsigned int style); /** Non-GUI handler, which logs and prints questions. */ bool noui_ThreadSafeQuestion(const bilingual_str& /* ignored interactive message */, const std::string& message, unsigned int style); /** Non-GUI handler, which only logs a message. */ void noui_InitMessage(const std::string& message); /** Connect all bitcoind signal handlers */ void noui_connect(); /** Redirect all bitcoind signal handlers to LogInfo. Used to check or suppress output during test runs that produce expected errors */ void noui_test_redirect(); /** Reconnects the regular Non-GUI handlers after having used noui_test_redirect */ void noui_reconnect(); #endif // BITCOIN_NOUI_H