X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Finit.h;h=e2f3d257d66b78ed911a1a76a2284d57f636b01c;hb=HEAD;hp=cc276a2bf3d54450bba2d884730e666a064fe722;hpb=5e322a72f94e3c759bb37cec37d8c066766b6072;p=novacoin.git diff --git a/src/init.h b/src/init.h index cc276a2..e2f3d25 100644 --- a/src/init.h +++ b/src/init.h @@ -5,13 +5,15 @@ #ifndef BITCOIN_INIT_H #define BITCOIN_INIT_H -#include "wallet.h" +#include -extern CWallet* pwalletMain; +class CWallet; +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