raw
genesis                 1 // Copyright (c) 2009-2010 Satoshi Nakamoto
genesis 2 // Copyright (c) 2011 The Bitcoin developers
genesis 3 // Distributed under the MIT/X11 software license, see the accompanying
genesis 4 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
genesis 5 #ifndef BITCOIN_INIT_H
genesis 6 #define BITCOIN_INIT_H
genesis 7
genesis 8 extern CWallet* pwalletMain;
genesis 9
genesis 10 void Shutdown(void* parg);
genesis 11 bool AppInit(int argc, char* argv[]);
genesis 12 bool AppInit2(int argc, char* argv[]);
genesis 13
genesis 14 #endif