2011-05-14 20:10:21 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file license.txt or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_INIT_H
|
|
|
|
#define BITCOIN_INIT_H
|
|
|
|
|
2011-06-26 19:23:24 +02:00
|
|
|
extern CWallet* pwalletMain;
|
|
|
|
|
2011-05-14 20:10:21 +02:00
|
|
|
void Shutdown(void* parg);
|
|
|
|
bool AppInit(int argc, char* argv[]);
|
|
|
|
bool AppInit2(int argc, char* argv[]);
|
|
|
|
|
|
|
|
#endif
|