1
0
mirror of https://github.com/GOSTSec/gostcoin synced 2025-01-15 09:10:02 +00:00
gostcoin/src/init.h

20 lines
535 B
C
Raw Normal View History

2017-03-22 11:56:18 -04:00
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2012 The Bitcoin developers
2018-02-13 21:53:22 +03:00
// Copyright (c) 2017-2018 The Gostcoin Developers
2017-03-22 11:56:18 -04:00
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_INIT_H
#define BITCOIN_INIT_H
#include "wallet.h"
extern CWallet* pwalletMain;
void StartShutdown();
bool ShutdownRequested();
void Shutdown();
bool AppInit2(boost::thread_group& threadGroup);
std::string HelpMessage();
#endif