2014-01-05 17:03:23 -03:00
|
|
|
// Copyright (c) 2013-2014 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-04-13 02:13:08 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_NOUI_H
|
|
|
|
#define BITCOIN_NOUI_H
|
|
|
|
|
2018-09-06 15:49:40 -03:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
/** Non-GUI handler, which logs and prints messages. */
|
|
|
|
bool noui_ThreadSafeMessageBox(const std::string& message, const std::string& caption, unsigned int style);
|
|
|
|
/** Non-GUI handler, which logs and prints questions. */
|
|
|
|
bool noui_ThreadSafeQuestion(const std::string& /* ignored interactive message */, const std::string& message, const std::string& caption, 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();
|
2013-04-13 02:13:08 -03:00
|
|
|
|
2014-08-28 16:21:03 -04:00
|
|
|
#endif // BITCOIN_NOUI_H
|