]> Git Repo - VerusCoin.git/blob - src/init.h
Merge pull request #4762
[VerusCoin.git] / src / init.h
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2013 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 #ifndef BITCOIN_INIT_H
7 #define BITCOIN_INIT_H
8
9 #include <string>
10
11 class CWallet;
12
13 namespace boost {
14     class thread_group;
15 } // namespace boost
16
17 extern CWallet* pwalletMain;
18
19 void StartShutdown();
20 bool ShutdownRequested();
21 void Shutdown();
22 bool AppInit2(boost::thread_group& threadGroup);
23
24 /* The help message mode determines what help message to show */
25 enum HelpMessageMode
26 {
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.025822 seconds and 4 git commands to generate.