Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
init.h
Go to the documentation of this file.
1 // Copyright (c) 2009-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 #ifndef BITCOIN_INIT_H
6 #define BITCOIN_INIT_H
7 
8 #include "wallet.h"
9 
10 extern CWallet* pwalletMain;
11 
12 void StartShutdown();
13 bool ShutdownRequested();
14 void Shutdown();
15 bool AppInit2(boost::thread_group& threadGroup);
16 std::string HelpMessage();
17 
18 #endif
bool ShutdownRequested()
Definition: init.cpp:86
void Shutdown()
Definition: init.cpp:93
bool AppInit2(boost::thread_group &threadGroup)
Initialize bitcoin.
Definition: init.cpp:455
std::string HelpMessage()
Definition: init.cpp:299
A CWallet is an extension of a keystore, which also maintains a set of transactions and balances...
Definition: wallet.h:69
void StartShutdown()
Definition: init.cpp:82
CWallet * pwalletMain
Definition: init.cpp:31