]>
Commit | Line | Data |
---|---|---|
8bd66202 | 1 | // Copyright (c) 2009-2010 Satoshi Nakamoto |
88216419 | 2 | // Copyright (c) 2009-2012 The Bitcoin developers |
8bd66202 | 3 | // Distributed under the MIT/X11 software license, see the accompanying |
3a25a2b9 | 4 | // file COPYING or http://www.opensource.org/licenses/mit-license.php. |
223b6f1b WL |
5 | #ifndef BITCOIN_INIT_H |
6 | #define BITCOIN_INIT_H | |
8bd66202 | 7 | |
ed6d0b5f PW |
8 | #include "wallet.h" |
9 | ||
c8c2fbe0 | 10 | class boost::thread_group; |
64c7ee7e PW |
11 | extern CWallet* pwalletMain; |
12 | ||
9247134e | 13 | void StartShutdown(); |
8bd66202 | 14 | void Shutdown(void* parg); |
c8c2fbe0 | 15 | bool AppInit2(boost::thread_group& threadGroup); |
9f5b11e6 | 16 | std::string HelpMessage(); |
223b6f1b WL |
17 | |
18 | #endif |