1 // Copyright (c) 2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #include "ui_interface.h"
7 #include "bitcoinrpc.h"
11 static int noui_ThreadSafeMessageBox(const std::string& message, const std::string& caption, int style)
13 printf("%s: %s\n", caption.c_str(), message.c_str());
14 fprintf(stderr, "%s: %s\n", caption.c_str(), message.c_str());
18 static bool noui_ThreadSafeAskFee(int64 nFeeRequired, const std::string& strCaption)
23 static void noui_QueueShutdown()
25 // Without UI, Shutdown can simply be started in a new thread
26 CreateThread(Shutdown, NULL);
31 // Connect bitcoind signal handlers
32 uiInterface.ThreadSafeMessageBox.connect(noui_ThreadSafeMessageBox);
33 uiInterface.ThreadSafeAskFee.connect(noui_ThreadSafeAskFee);
34 uiInterface.QueueShutdown.connect(noui_QueueShutdown);