]> Git Repo - VerusCoin.git/blob - src/init.h
Merge pull request #5367
[VerusCoin.git] / src / init.h
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2014 The Bitcoin developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6 #ifndef BITCOIN_INIT_H
7 #define BITCOIN_INIT_H
8
9 #include <string>
10
11 class CWallet;
12
13 namespace boost
14 {
15 class thread_group;
16 } // namespace boost
17
18 extern CWallet* pwalletMain;
19
20 void StartShutdown();
21 bool ShutdownRequested();
22 void Shutdown();
23 bool AppInit2(boost::thread_group& threadGroup);
24
25 /** The help message mode determines what help message to show */
26 enum HelpMessageMode {
27     HMM_BITCOIND,
28     HMM_BITCOIN_QT
29 };
30
31 /** Help for options shared between UI and daemon (for -help) */
32 std::string HelpMessage(HelpMessageMode mode);
33 /** Returns licensing information (for -version) */
34 std::string LicenseInfo();
35
36 #endif // BITCOIN_INIT_H
This page took 0.025263 seconds and 4 git commands to generate.