Update CMakeLists.txt - play with openssl
[novacoin.git] / src / noui.cpp
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
6 #include "interface.h"
7
8 static int noui_ThreadSafeMessageBox(const std::string& message, const std::string& caption, int style)
9 {
10     printf("%s: %s\n", caption.c_str(), message.c_str());
11     fprintf(stderr, "%s: %s\n", caption.c_str(), message.c_str());
12     return 4;
13 }
14
15 static bool noui_ThreadSafeAskFee(int64_t nFeeRequired, const std::string& strCaption)
16 {
17     return true;
18 }
19
20 void noui_connect()
21 {
22     // Connect bitcoind signal handlers
23     uiInterface.ThreadSafeMessageBox.connect(noui_ThreadSafeMessageBox);
24     uiInterface.ThreadSafeAskFee.connect(noui_ThreadSafeAskFee);
25 }