2010-07-14 17:54:31 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2012-02-07 17:28:30 +01:00
|
|
|
// Copyright (c) 2009-2012 The Bitcoin developers
|
2010-07-14 17:54:31 +02:00
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
2012-05-18 16:02:28 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2011-05-15 09:11:04 +02:00
|
|
|
#ifndef BITCOIN_INIT_H
|
|
|
|
#define BITCOIN_INIT_H
|
2010-07-14 17:54:31 +02:00
|
|
|
|
2012-04-15 22:10:54 +02:00
|
|
|
#include "wallet.h"
|
|
|
|
|
2012-06-11 07:40:14 +02:00
|
|
|
void StartShutdown();
|
2013-03-23 23:14:12 +01:00
|
|
|
bool ShutdownRequested();
|
2013-03-09 18:02:57 +01:00
|
|
|
void Shutdown();
|
2013-03-07 04:16:05 +01:00
|
|
|
bool AppInit2(boost::thread_group& threadGroup);
|
2012-05-13 11:36:10 +02:00
|
|
|
std::string HelpMessage();
|
2011-05-15 09:11:04 +02:00
|
|
|
|
|
|
|
#endif
|