X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Finit.h;h=84f2712edc34ccda7c4b3d5745773ad1e1873a2a;hb=510a23a2c838245cd4681ed0b4fbce48e8ebf506;hp=6bf846628ae401f899a2c97e7ecbcb3a20243ab1;hpb=276cfd85304be27bb2c04c087c8f3ea25cb6f77d;p=novacoin.git diff --git a/src/init.h b/src/init.h index 6bf8466..84f2712 100644 --- a/src/init.h +++ b/src/init.h @@ -1,15 +1,17 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2011 The Bitcoin developers +// Copyright (c) 2009-2012 The Bitcoin developers // 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 -extern CWallet* pwalletMain; +#include "wallet.h" +extern CWallet* pwalletMain; +extern std::string strWalletFileName; void StartShutdown(); void Shutdown(void* parg); -bool AppInit(int argc, char* argv[]); -bool AppInit2(int argc, char* argv[]); +bool AppInit2(); +std::string HelpMessage(); #endif